mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-30 10:26:58 +01:00
break the hint into two so goes-away part can be smaller.
This commit is contained in:
parent
d56ce42585
commit
492e086311
2 changed files with 23 additions and 11 deletions
|
@ -6,15 +6,26 @@
|
||||||
android:layout_height="fill_parent"
|
android:layout_height="fill_parent"
|
||||||
android:paddingLeft="8dp"
|
android:paddingLeft="8dp"
|
||||||
android:paddingRight="8dp">
|
android:paddingRight="8dp">
|
||||||
|
|
||||||
<TextView android:id="@+id/empty_games_list"
|
<LinearLayout android:id="@+id/empty_games_list"
|
||||||
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="fill_parent"
|
||||||
android:text="@string/empty_games_list"
|
android:layout_height="wrap_content"
|
||||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
>
|
||||||
android:background="#FF202020"
|
<TextView android:layout_height="wrap_content"
|
||||||
android:gravity="center"
|
android:layout_width="wrap_content"
|
||||||
/>
|
android:text="@string/empty_games_list"
|
||||||
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||||
|
android:background="#FF202020"
|
||||||
|
android:gravity="center"
|
||||||
|
/>
|
||||||
|
<TextView android:layout_height="wrap_content"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:text="@string/empty_games_list2"
|
||||||
|
android:background="#FF202020"
|
||||||
|
android:gravity="center"
|
||||||
|
/>
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
<ListView android:id="@id/android:list"
|
<ListView android:id="@id/android:list"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
|
|
|
@ -532,7 +532,8 @@
|
||||||
|
|
||||||
<string name="empty_games_list">Use one of the buttons below to
|
<string name="empty_games_list">Use one of the buttons below to
|
||||||
create a game. Then tap the game to play or long-tap it for
|
create a game. Then tap the game to play or long-tap it for
|
||||||
other options.\n(This hint will disappear whenever there are
|
other options.</string>
|
||||||
more than two games in the list.)</string>
|
<string name="empty_games_list2">This hint will disappear
|
||||||
|
whenever there are more than two games in the list.</string>
|
||||||
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|
Loading…
Reference in a new issue