Implement first few screens of Android 5.0-based UI.

This commit is contained in:
Eder Bastos
2015-05-06 20:12:58 -04:00
parent 80fe5e0a55
commit b47835fc07
39 changed files with 1167 additions and 86 deletions

View File

@ -9,15 +9,28 @@
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:allowBackup="true"
android:supportsRtl="true">
<activity
android:name=".activities.GameGridActivity"
android:label="Dolphin New UI"
android:theme="@style/DolphinWii">
<!-- This intentfilter marks this Activity as the one that gets launched from Home screen. -->
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity
android:name="org.dolphinemu.dolphinemu.gamelist.GameListActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo.Light" >
<!-- This intentfilter marks this Activity as the one that gets launched from Home screen. -->
<!-- Having a second activity with this intent-filter means we have two choices from the home screen. -->
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />