make radio text larger

This commit is contained in:
Eric House 2021-01-03 12:26:14 -08:00
parent 2e3ba03f3d
commit f202ca107c
3 changed files with 10 additions and 7 deletions

View file

@ -16,18 +16,16 @@
> >
<RadioButton android:id="@+id/radio_unknown" <RadioButton android:id="@+id/radio_unknown"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/newgame_radio_unknown" android:text="@string/newgame_radio_unknown"
style="@style/new_game_radio"
/> />
<TextView android:text="@string/choose_expl_new" <TextView android:text="@string/choose_expl_new"
style="@style/new_game_expl" style="@style/new_game_expl"
/> />
<RadioButton android:id="@+id/radio_known" <RadioButton android:id="@+id/radio_known"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/newgame_radio_known" android:text="@string/newgame_radio_known"
style="@style/new_game_radio"
/> />
<Spinner android:id="@+id/names" <Spinner android:id="@+id/names"
android:layout_width="match_parent" android:layout_width="match_parent"
@ -41,9 +39,8 @@
/> />
<RadioButton android:id="@+id/radio_configure" <RadioButton android:id="@+id/radio_configure"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/newgame_configure_first" android:text="@string/newgame_configure_first"
style="@style/new_game_radio"
/> />
<TextView android:text="@string/choose_expl_config" <TextView android:text="@string/choose_expl_config"
style="@style/new_game_expl" style="@style/new_game_expl"

View file

@ -2681,8 +2681,9 @@
<string name="newgame_radio_known">Invite Known</string> <string name="newgame_radio_known">Invite Known</string>
<string name="newgame_radio_unknown">Invite Unknown</string> <string name="newgame_radio_unknown">Invite Unknown</string>
<string name="newgame_invite_fmt">Start with %1$s</string> <!-- Button text depending on the radio button chosen. -->
<string name="newgame_open_game">Start game</string> <string name="newgame_open_game">Start game</string>
<string name="newgame_invite_fmt">Start game with %1$s</string>
<string name="newgame_configure_game">Configure game</string> <string name="newgame_configure_game">Configure game</string>
<!-- Text of second of two buttons for new standalone games. <!-- Text of second of two buttons for new standalone games.

View file

@ -183,4 +183,9 @@
<item name="android:paddingBottom">8dp</item> <item name="android:paddingBottom">8dp</item>
<item name="android:textSize">10dp</item> <item name="android:textSize">10dp</item>
</style> </style>
<style name="new_game_radio">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:textSize">18dp</item>
</style>
</resources> </resources>