mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-29 08:34:37 +01:00
layout for dict download progress and string to populate
This commit is contained in:
parent
2761772e05
commit
6e77904d56
2 changed files with 24 additions and 0 deletions
21
xwords4/android/XWords4/res/layout/import_dict.xml
Normal file
21
xwords4/android/XWords4/res/layout/import_dict.xml
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:orientation="horizontal"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:padding="10sp"
|
||||
>
|
||||
<ProgressBar android:id="@+id/progress_bar"
|
||||
android:indeterminate="true"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:layout_margin="5sp"
|
||||
/>
|
||||
<TextView android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:text="@string/downloading_dict"
|
||||
android:gravity="center_vertical|center_horizontal"
|
||||
/>
|
||||
</LinearLayout>
|
|
@ -253,6 +253,9 @@
|
|||
<!-- fill this in other than in English -->
|
||||
<string name="xlator"></string>
|
||||
|
||||
<string name="downloading_dict">Downloading Crosswords
|
||||
dictionary...</string>
|
||||
|
||||
<!-- These do not require localization -->
|
||||
<string name="key_color_tiles">key_color_tiles</string>
|
||||
<string name="key_show_arrow">key_show_arrow</string>
|
||||
|
|
Loading…
Add table
Reference in a new issue