Merge pull request #320 from SeannyM/Android-Theme
Make the Android UI more like the desktop UI
|
@ -33,8 +33,13 @@
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</activity>
|
||||||
|
|
||||||
<activity android:name="org.dolphinemu.dolphinemu.about.AboutActivity"/>
|
<activity
|
||||||
<activity android:name="org.dolphinemu.dolphinemu.gamelist.GameListActivity"/>
|
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
|
<activity
|
||||||
android:name="org.dolphinemu.dolphinemu.emulation.EmulationActivity"
|
android:name="org.dolphinemu.dolphinemu.emulation.EmulationActivity"
|
||||||
|
@ -47,7 +52,8 @@
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name="org.dolphinemu.dolphinemu.settings.PrefsActivity"
|
android:name="org.dolphinemu.dolphinemu.settings.PrefsActivity"
|
||||||
android:label="@string/settings" />
|
android:label="@string/settings"
|
||||||
|
android:theme="@android:style/Theme.Holo.Light" />
|
||||||
|
|
||||||
</application>
|
</application>
|
||||||
|
|
||||||
|
|
Before Width: | Height: | Size: 510 B After Width: | Height: | Size: 408 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 788 B |
Before Width: | Height: | Size: 487 B After Width: | Height: | Size: 462 B |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 635 B |
Before Width: | Height: | Size: 580 B After Width: | Height: | Size: 450 B |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 932 B |
Before Width: | Height: | Size: 823 B After Width: | Height: | Size: 243 B |
Before Width: | Height: | Size: 640 B After Width: | Height: | Size: 462 B |
|
@ -14,6 +14,7 @@
|
||||||
android:singleLine="true"
|
android:singleLine="true"
|
||||||
android:text="@+id/TextView01"
|
android:text="@+id/TextView01"
|
||||||
android:textAppearance="?android:attr/textAppearanceLarge"
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
||||||
android:textStyle="bold" />
|
android:textStyle="bold"
|
||||||
|
android:textColor="#FFFFFF" />
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
|
@ -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;
|
return convertView;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|