diff options
| author | The Android Open Source Project <initial-contribution@android.com> | 2009-01-09 17:51:25 -0800 |
|---|---|---|
| committer | The Android Open Source Project <initial-contribution@android.com> | 2009-01-09 17:51:25 -0800 |
| commit | 765e7c99c2b0b503f6ca6005897224b9d616d49b (patch) | |
| tree | 3369932e240f30cbac56059ecdc244c24a93ea99 /res/layout-land | |
| parent | ed217d91fb3f1a8f4e75ab36ef81d72ef9f4e6d6 (diff) | |
| download | packages_apps_Browser-765e7c99c2b0b503f6ca6005897224b9d616d49b.tar.gz packages_apps_Browser-765e7c99c2b0b503f6ca6005897224b9d616d49b.tar.bz2 packages_apps_Browser-765e7c99c2b0b503f6ca6005897224b9d616d49b.zip | |
auto import from //branches/cupcake/...@125939
Diffstat (limited to 'res/layout-land')
| -rw-r--r-- | res/layout-land/gears_dialog.xml | 77 |
1 files changed, 54 insertions, 23 deletions
diff --git a/res/layout-land/gears_dialog.xml b/res/layout-land/gears_dialog.xml index f5cf96969..5536fed4e 100644 --- a/res/layout-land/gears_dialog.xml +++ b/res/layout-land/gears_dialog.xml @@ -96,32 +96,63 @@ android:background="@color/white" android:layout_width="fill_parent" android:layout_height="wrap_content" - android:paddingTop="10dip"> + android:paddingTop="2dip"> - <Button - android:id="@+id/button_alwaysdeny" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_alignParentLeft="true" - style="@style/gears_button" - android:textSize="13dip"/> - - <LinearLayout - android:layout_width="wrap_content" - android:layout_alignParentRight="true" + <LinearLayout + android:orientation="vertical" + android:layout_width="fill_parent" android:layout_height="wrap_content"> - <Button - android:id="@+id/button_allow" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:textSize="13dip"/> - - <Button - android:id="@+id/button_deny" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:textSize="13dip"/> + <TextView + android:id="@+id/selection" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:textSize="13dip" + android:gravity="right" + android:textColor="@color/black"/> + + <RelativeLayout + android:background="@color/white" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:paddingTop="2dip"> + + <LinearLayout + android:orientation="horizontal" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:background="@color/white"> + + <Button + android:id="@+id/button_alwaysdeny" + android:layout_width="wrap_content" + android:layout_height="48px" + android:layout_alignParentLeft="true" + style="@style/gears_button" + android:textSize="13dip"/> + + </LinearLayout> + + <LinearLayout + android:layout_width="wrap_content" + android:layout_alignParentRight="true" + android:layout_height="wrap_content"> + + <Button + android:id="@+id/button_allow" + android:layout_width="wrap_content" + android:layout_height="48px" + android:textSize="13dip"/> + + <Button + android:id="@+id/button_deny" + android:layout_width="wrap_content" + android:layout_height="48px" + android:textSize="13dip"/> + + </LinearLayout> + + </RelativeLayout> </LinearLayout> |
