diff options
author | 2013-05-15 11:05:22 -0700 | |
---|---|---|
committer | 2013-05-15 11:05:22 -0700 | |
commit | e486427650a7ea761fbb266fc0b3339e4df97eda (patch) | |
tree | 08f78bb95b523f968613c1559e93e69c317a1949 /java/res | |
parent | 33ccdd1cda59092d52bd73e8c5d1c170f753f9b9 (diff) | |
parent | eb34f71088215b7c6514b5f4150057c33f2069d3 (diff) | |
download | latinime-e486427650a7ea761fbb266fc0b3339e4df97eda.tar.gz latinime-e486427650a7ea761fbb266fc0b3339e4df97eda.tar.xz latinime-e486427650a7ea761fbb266fc0b3339e4df97eda.zip |
am eb34f710: am ab0c66b9: [PB10] Add a progress bar to display file download progress
* commit 'eb34f71088215b7c6514b5f4150057c33f2069d3':
[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 |