diff options
| author | Tom Taylor <tomtaylor@google.com> | 2009-10-15 11:01:26 -0700 |
|---|---|---|
| committer | Tom Taylor <tomtaylor@google.com> | 2009-10-15 11:01:26 -0700 |
| commit | 6719d39db189a97638d99e848d477896e294628f (patch) | |
| tree | 5f44790a8e0daf224a4262fbcba96175e59b10cc /core/res | |
| parent | f18b9311e8a6c4b05574727ae117338a9c341a1b (diff) | |
| download | frameworks_base-6719d39db189a97638d99e848d477896e294628f.zip frameworks_base-6719d39db189a97638d99e848d477896e294628f.tar.gz frameworks_base-6719d39db189a97638d99e848d477896e294628f.tar.bz2 | |
Fix alert dialog separator
Update the line that separates the alert dialog's title from a custom view
with the correct asset to match the rest of the UI.
Diffstat (limited to 'core/res')
| -rw-r--r-- | core/res/res/layout/alert_dialog.xml | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/core/res/res/layout/alert_dialog.xml b/core/res/res/layout/alert_dialog.xml index cf2de05..40e3f42 100644 --- a/core/res/res/layout/alert_dialog.xml +++ b/core/res/res/layout/alert_dialog.xml @@ -50,11 +50,11 @@ android:paddingTop="6dip" android:paddingRight="10dip" android:src="@drawable/ic_dialog_info" /> - <com.android.internal.widget.DialogTitle android:id="@+id/alertTitle" + <com.android.internal.widget.DialogTitle android:id="@+id/alertTitle" style="?android:attr/textAppearanceLarge" android:singleLine="true" android:ellipsize="end" - android:layout_width="fill_parent" + android:layout_width="fill_parent" android:layout_height="wrap_content" /> </LinearLayout> <ImageView android:id="@+id/titleDivider" @@ -63,9 +63,7 @@ android:visibility="gone" android:scaleType="fitXY" android:gravity="fill_horizontal" - android:src="@android:drawable/dialog_divider_horizontal_light" - android:layout_marginLeft="10dip" - android:layout_marginRight="10dip"/> + android:src="@android:drawable/divider_horizontal_dark" /> <!-- If the client uses a customTitle, it will be added here. --> </LinearLayout> @@ -88,7 +86,7 @@ android:padding="5dip" /> </ScrollView> </LinearLayout> - + <FrameLayout android:id="@+id/customPanel" android:layout_width="fill_parent" android:layout_height="wrap_content" @@ -99,13 +97,13 @@ android:paddingTop="5dip" android:paddingBottom="5dip" /> </FrameLayout> - + <LinearLayout android:id="@+id/buttonPanel" android:layout_width="fill_parent" android:layout_height="wrap_content" android:minHeight="54dip" - android:orientation="vertical" > - <LinearLayout + android:orientation="vertical" > + <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" |
