mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2024-12-05 01:35:50 +01:00
62e3ace1ab
- SeekBarPreference now uses Android system style (textAppearanceLarge) instead of custom attribute values. - The dialog for filename has now the same visual style as the other dialogs. - Added colons to the rest of the dialog labels. - Added some padding to select_game.xml.
23 lines
670 B
XML
23 lines
670 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:orientation="vertical">
|
|
<EditText
|
|
android:id="@+id/select_game_filter"
|
|
android:hint="@string/filter_text"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:maxLines="1"
|
|
android:inputType="text"
|
|
android:layout_margin="10dp">
|
|
</EditText>
|
|
<ListView
|
|
android:id="@android:id/list"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:focusable="false">
|
|
</ListView>
|
|
</LinearLayout>
|