diff options
author | 2013-04-26 04:42:26 -0700 | |
---|---|---|
committer | 2013-04-26 04:42:26 -0700 | |
commit | eb34f71088215b7c6514b5f4150057c33f2069d3 (patch) | |
tree | e6dce70e4c45827218035f1341d80dfad1fab947 /java/res | |
parent | b312f4a8f78f423c5507785f5fbf79d6c786e5bc (diff) | |
parent | ab0c66b9d1f732a0dc372abd6d113d2cac33b8ac (diff) | |
download | latinime-eb34f71088215b7c6514b5f4150057c33f2069d3.tar.gz latinime-eb34f71088215b7c6514b5f4150057c33f2069d3.tar.xz latinime-eb34f71088215b7c6514b5f4150057c33f2069d3.zip |
am ab0c66b9: [PB10] Add a progress bar to display file download progress
* commit 'ab0c66b9d1f732a0dc372abd6d113d2cac33b8ac':
[PB10] Add a progress bar to display file download progress
Diffstat (limited to 'java/res')
-rw-r--r-- | java/res/layout/dictionary_line.xml | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/java/res/layout/dictionary_line.xml b/java/res/layout/dictionary_line.xml index 9ddbcf714..7a06fb056 100644 --- a/java/res/layout/dictionary_line.xml +++ b/java/res/layout/dictionary_line.xml @@ -52,23 +52,27 @@ android:ellipsize="marquee" android:fadingEdge="horizontal" /> - <TextView - android:id="@+android:id/summary" - android:layout_marginLeft="5dip" - android:layout_marginStart="5dip" + <FrameLayout android:layout_width="match_parent" android:layout_height="wrap_content" - android:textAppearance="?android:attr/textAppearanceSmall" - android:textColor="?android:attr/textColorSecondary" - android:maxLines="1" /> + android:layout_marginStart="5dip"> + + <TextView + android:id="@+android:id/summary" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:textAppearance="?android:attr/textAppearanceSmall" + android:textColor="?android:attr/textColorSecondary" + android:maxLines="1" /> - <!-- <ProgressBar --> - <!-- android:id="@+id/dictionary_line_progress_bar" --> - <!-- style="@android:style/Widget.Holo.ProgressBar.Horizontal" --> - <!-- android:layout_width="match_parent" --> - <!-- android:layout_height="match_parent" --> - <!-- android:gravity="center" /> --> + <ProgressBar + android:id="@+id/dictionary_line_progress_bar" + style="@android:style/Widget.Holo.ProgressBar.Horizontal" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:gravity="center" /> + </FrameLayout> </LinearLayout> <com.android.inputmethod.dictionarypack.ButtonSwitcher |