break the hint into two so goes-away part can be smaller.

This commit is contained in:
Andy2 2011-03-10 18:34:02 -08:00
parent d56ce42585
commit 492e086311
2 changed files with 23 additions and 11 deletions

View file

@ -6,15 +6,26 @@
android:layout_height="fill_parent"
android:paddingLeft="8dp"
android:paddingRight="8dp">
<TextView android:id="@+id/empty_games_list"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/empty_games_list"
android:textAppearance="?android:attr/textAppearanceMedium"
android:background="#FF202020"
android:gravity="center"
/>
<LinearLayout android:id="@+id/empty_games_list"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<TextView android:layout_height="wrap_content"
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"
android:layout_width="fill_parent"

View file

@ -532,7 +532,8 @@
<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
other options.\n(This hint will disappear whenever there are
more than two games in the list.)</string>
other options.</string>
<string name="empty_games_list2">This hint will disappear
whenever there are more than two games in the list.</string>
</resources>