Visual adjustments for smaller tablets.

Make the Manage Apps tab indicators horizontally scrollable.
Use medium font size for user dictionary.

Bug: 4462313

Change-Id: Iba44e758715c0187ea17ed072794b8596dee0e54
This commit is contained in:
Amith Yamasani
2011-05-24 14:29:47 -07:00
parent d12b950937
commit cfd524f07a
4 changed files with 59 additions and 5 deletions

View File

@@ -54,6 +54,7 @@ public class AccountPreference extends Preference {
setSummary("");
setPersistent(false);
setSyncStatus(SYNC_DISABLED);
setIcon(mProviderIcon);
}
public Account getAccount() {
@@ -68,8 +69,6 @@ public class AccountPreference extends Preference {
protected void onBindView(View view) {
super.onBindView(view);
setSummary(getSyncStatusMessage(mStatus));
mProviderIconView = (ImageView) view.findViewById(android.R.id.icon);
mProviderIconView.setImageDrawable(mProviderIcon);
mSyncStatusIcon = (ImageView) view.findViewById(R.id.syncStatusIcon);
mSyncStatusIcon.setImageResource(getSyncStatusIcon(mStatus));
}