Android: Align game name with other settings

This commit is contained in:
Ender's Games 2018-08-26 11:28:55 -04:00
parent 41cf6e957e
commit 75ae974f68
3 changed files with 65 additions and 63 deletions

View File

@ -18,42 +18,43 @@
android:gravity="center" android:gravity="center"
android:text="@string/pgc_doc" /> android:text="@string/pgc_doc" />
<LinearLayout <TableLayout
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginLeft="6dp" android:layout_marginLeft="6dp"
android:layout_marginTop="20dp" android:stretchColumns="*" >
android:orientation="vertical" >
<TableRow
android:layout_marginTop="10dp"
android:gravity="center_vertical" >
<TextView <TextView
android:id="@+id/textView3" android:id="@+id/textView3"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="0dip" android:layout_height="wrap_content"
android:layout_weight="1" android:layout_weight="0.5"
android:ems="10"
android:gravity="center_vertical|left"
android:text="@string/pgc_select_game" /> android:text="@string/pgc_select_game" />
<LinearLayout <LinearLayout
android:layout_width="match_parent" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:orientation="horizontal" > android:layout_weight="1"
android:gravity="right"
android:orientation="vertical" >
<Spinner <Spinner
android:id="@+id/config_spinner" android:id="@+id/config_spinner"
android:layout_width="0dip" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="0dp"
android:layout_weight="1" android:layout_weight="1"
android:ems="10" > android:ems="10" >
<requestFocus /> <requestFocus />
</Spinner> </Spinner>
</LinearLayout> </LinearLayout>
</LinearLayout> </TableRow>
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="6dp"
android:stretchColumns="*" >
<TableRow <TableRow
android:layout_marginTop="25dp" android:layout_marginTop="25dp"

View File

@ -18,42 +18,43 @@
android:gravity="center" android:gravity="center"
android:text="@string/pgc_doc" /> android:text="@string/pgc_doc" />
<LinearLayout <TableLayout
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginLeft="6dp" android:layout_marginLeft="6dp"
android:layout_marginTop="20dp" android:stretchColumns="*" >
android:orientation="vertical" >
<TableRow
android:layout_marginTop="10dp"
android:gravity="center_vertical" >
<TextView <TextView
android:id="@+id/textView3" android:id="@+id/textView3"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="0dip" android:layout_height="wrap_content"
android:layout_weight="1" android:layout_weight="0.5"
android:ems="10"
android:gravity="center_vertical|left"
android:text="@string/pgc_select_game" /> android:text="@string/pgc_select_game" />
<LinearLayout <LinearLayout
android:layout_width="match_parent" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:orientation="horizontal" > android:layout_weight="1"
android:gravity="right"
android:orientation="vertical" >
<Spinner <Spinner
android:id="@+id/config_spinner" android:id="@+id/config_spinner"
android:layout_width="0dip" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="0dp"
android:layout_weight="1" android:layout_weight="1"
android:ems="10" > android:ems="10" >
<requestFocus /> <requestFocus />
</Spinner> </Spinner>
</LinearLayout> </LinearLayout>
</LinearLayout> </TableRow>
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="6dp"
android:stretchColumns="*" >
<TableRow <TableRow
android:layout_marginTop="25dp" android:layout_marginTop="25dp"

View File

@ -62,7 +62,7 @@
<string name="reset_emu_details">Warning: Emulator settings will be cleared. Folder and input settings are not included. This cannot be undone.\nAre you sure you want to continue?</string> <string name="reset_emu_details">Warning: Emulator settings will be cleared. Folder and input settings are not included. This cannot be undone.\nAre you sure you want to continue?</string>
<string name="pgc_doc">Per-Game Configuration\nThese options will override the default settings.\nTo add a game, launch it from the main game list\nGames will appear when returning to this window\nAfter changing settings, make sure to \"Save PCG\"</string> <string name="pgc_doc">Per-Game Configuration\nThese options will override the default settings.\nTo add a game, launch it from the main game list\nGames will appear when returning to this window\nAfter changing settings, make sure to \"Save PCG\"</string>
<string name="pgc_select_game">Select Game</string> <string name="pgc_select_game">PGC Game</string>
<string name="save_pgc_title">Save Per-Game Config</string> <string name="save_pgc_title">Save Per-Game Config</string>
<string name="save_pgc">Save PGC</string> <string name="save_pgc">Save PGC</string>
<string name="pgconfig_saved">Configuration Saved</string> <string name="pgconfig_saved">Configuration Saved</string>