Merge pull request #320 from SeannyM/Android-Theme

Make the Android UI more like the desktop UI
This commit is contained in:
Ryan Houdek 2014-04-30 19:00:41 -05:00
commit 7f00cae2b6
11 changed files with 15 additions and 4 deletions

View File

@ -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"
@ -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>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 510 B

After

Width:  |  Height:  |  Size: 408 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 788 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 487 B

After

Width:  |  Height:  |  Size: 462 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 635 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 580 B

After

Width:  |  Height:  |  Size: 450 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 932 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 823 B

After

Width:  |  Height:  |  Size: 243 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 640 B

After

Width:  |  Height:  |  Size: 462 B

View File

@ -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>

View File

@ -70,6 +70,10 @@ public final class GameListAdapter extends ArrayAdapter<GameListItem>
}
}
// Make every other game in the list grey
if (position % 2 == 1)
convertView.setBackgroundColor(0xFFE3E3E3);
return convertView;
}
}