am d618419d: am 37bbaea8: Merge "[PB14] Cosmetic fixes to the progress bar"

* commit 'd618419d16865f9cc54ec893873bab514b321815':
  [PB14] Cosmetic fixes to the progress bar
main
Jean Chalard 2013-05-15 11:19:35 -07:00 committed by Android Git Automerger
commit 9db1f6d9c6
2 changed files with 4 additions and 0 deletions

View File

@ -78,6 +78,8 @@
<com.android.inputmethod.dictionarypack.ButtonSwitcher
android:id="@+android:id/wordlist_button_switcher"
android:layout_weight="0"
android:layout_marginStart="13dip"
android:layout_marginLeft="13dip"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<Button

View File

@ -123,6 +123,7 @@ public class DictionaryDownloadProgressBar extends ProgressBar {
final UpdateHelper updateHelper = new UpdateHelper();
final Query query = new Query().setFilterById(mId);
int lastProgress = 0;
setIndeterminate(true);
while (!isInterrupted()) {
final Cursor cursor = mDownloadManager.query(query);
if (null == cursor) {
@ -156,6 +157,7 @@ public class DictionaryDownloadProgressBar extends ProgressBar {
private int mProgress;
@Override
public void run() {
setIndeterminate(false);
setProgress(mProgress);
}
public void setProgressFromAnotherThread(final int progress) {