Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #320 from SeannyM/Android-Theme
Make the Android UI more like the desktop UI
  • Loading branch information
Sonicadvance1 committed May 1, 2014
2 parents c4221e8 + 5865ae2 commit 7f00cae
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 4 deletions.
12 changes: 9 additions & 3 deletions Source/Android/AndroidManifest.xml
Expand Up @@ -33,8 +33,13 @@
</intent-filter>
</activity>

<activity android:name="org.dolphinemu.dolphinemu.about.AboutActivity"/>
<activity android:name="org.dolphinemu.dolphinemu.gamelist.GameListActivity"/>
<activity
android:name="org.dolphinemu.dolphinemu.about.AboutActivity"
android:theme="@android:style/Theme.Holo.Light" />

<activity
android:name="org.dolphinemu.dolphinemu.gamelist.GameListActivity"
android:theme="@android:style/Theme.Holo.Light" />

<activity
android:name="org.dolphinemu.dolphinemu.emulation.EmulationActivity"
Expand All @@ -47,7 +52,8 @@

<activity
android:name="org.dolphinemu.dolphinemu.settings.PrefsActivity"
android:label="@string/settings" />
android:label="@string/settings"
android:theme="@android:style/Theme.Holo.Light" />

</application>

Expand Down
Binary file modified Source/Android/res/drawable-hdpi/ic_menu_file.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Source/Android/res/drawable-hdpi/ic_menu_folder.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Source/Android/res/drawable-mdpi/ic_menu_file.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Source/Android/res/drawable-mdpi/ic_menu_folder.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Source/Android/res/drawable-xhdpi/ic_menu_file.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Source/Android/res/drawable-xhdpi/ic_menu_folder.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Source/Android/res/drawable-xxhdpi/ic_menu_file.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Source/Android/res/drawable-xxhdpi/ic_menu_folder.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion Source/Android/res/layout/sidemenu.xml
Expand Up @@ -14,6 +14,7 @@
android:singleLine="true"
android:text="@+id/TextView01"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textStyle="bold" />
android:textStyle="bold"
android:textColor="#FFFFFF" />

</LinearLayout>
Expand Up @@ -70,6 +70,10 @@ public View getView(int position, View convertView, ViewGroup parent)
}
}

// Make every other game in the list grey
if (position % 2 == 1)
convertView.setBackgroundColor(0xFFE3E3E3);

return convertView;
}
}
Expand Down

0 comments on commit 7f00cae

Please sign in to comment.