diff options
author | John Reck <jreck@google.com> | 2011-06-30 11:55:55 -0700 |
---|---|---|
committer | John Reck <jreck@google.com> | 2011-06-30 11:55:55 -0700 |
commit | 7c6e1c928ea078034e7eacf32ef5c209138001d9 (patch) | |
tree | 6caee0d8a464d351645f5239daf694e0882322ee /res/layout | |
parent | 4399b13ca463824bbab1ba422f4004cff100b483 (diff) | |
download | packages_apps_browser-7c6e1c928ea078034e7eacf32ef5c209138001d9.zip packages_apps_browser-7c6e1c928ea078034e7eacf32ef5c209138001d9.tar.gz packages_apps_browser-7c6e1c928ea078034e7eacf32ef5c209138001d9.tar.bz2 |
Update geolocation prompt
Bug: 4975201
Cleanup and Holo'd
Change-Id: Ia4c31f411fa6fd2f3fd05ce92f4f4b8592cc3520
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/custom_screen.xml | 5 | ||||
-rwxr-xr-x | res/layout/geolocation_permissions_prompt.xml | 111 |
2 files changed, 55 insertions, 61 deletions
diff --git a/res/layout/custom_screen.xml b/res/layout/custom_screen.xml index 2105501..7a22530 100644 --- a/res/layout/custom_screen.xml +++ b/res/layout/custom_screen.xml @@ -14,7 +14,8 @@ limitations under the License. --> -<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"> +<merge + xmlns:android="http://schemas.android.com/apk/res/android"> <FrameLayout android:id="@+id/fullscreen_custom_content" android:visibility="gone" android:background="@color/black" @@ -36,5 +37,5 @@ android:layout_height="match_parent" /> </LinearLayout> -</FrameLayout> +</merge> diff --git a/res/layout/geolocation_permissions_prompt.xml b/res/layout/geolocation_permissions_prompt.xml index babde3a..1920c05 100755 --- a/res/layout/geolocation_permissions_prompt.xml +++ b/res/layout/geolocation_permissions_prompt.xml @@ -18,74 +18,67 @@ <com.android.browser.GeolocationPermissionsPrompt xmlns:android="http://schemas.android.com/apk/res/android" - android:fitsSystemWindows="true" android:layout_width="match_parent" - android:layout_height="wrap_content"> + android:layout_height="wrap_content" + android:background="@drawable/geolocation_permissions_prompt_background" + android:visibility="gone"> - <!-- Use an inner element as we can't show a hidden outermost element --> - <LinearLayout android:id="@+id/inner" - android:orientation="vertical" + <!-- 'google.com wants to know your location' --> + <TextView android:id="@+id/message" android:layout_width="match_parent" android:layout_height="wrap_content" - android:background="@color/black" - android:paddingTop="1px" - android:visibility="gone"> + android:singleLine="true" + android:scrollHorizontally="true" + android:padding="6dip" + android:textAppearance="?android:attr/textAppearanceSmall" /> - <!-- White line --> - <View - android:orientation="vertical" - android:layout_width="match_parent" - android:layout_height="1px" - android:background="@color/white" /> + <CheckBox android:id="@+id/remember" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_below="@id/message" + android:layout_alignLeft="@id/message" /> + <TextView + android:paddingLeft="4dip" + android:text="@string/geolocation_permissions_prompt_remember" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textAppearance="?android:attr/textAppearanceSmall" + android:layout_alignBaseline="@id/remember" + android:layout_toRightOf="@id/remember" /> - <!-- Container for content --> + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_below="@id/remember" + android:orientation="vertical" + android:divider="?android:attr/dividerHorizontal" + android:showDividers="beginning" + android:dividerPadding="16dip" + android:background="@null"> <LinearLayout - android:orientation="vertical" + style="?android:attr/buttonBarStyle" android:layout_width="match_parent" - android:layout_height="match_parent" - android:background="@color/geolocation_permissions_prompt_background" - android:padding="6dip"> - - <!-- 'google.com wants to know your location' --> - <TextView android:id="@+id/message" - android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="horizontal" + android:paddingLeft="2dip" + android:paddingRight="2dip" + android:measureWithLargestChild="true" + android:background="@null"> + <Button + android:id="@+id/dont_share_button" + style="?android:attr/buttonBarButtonStyle" + android:layout_weight="1" + android:layout_width="0dip" android:layout_height="wrap_content" - android:textSize="14dip" - android:textColor="@color/black" /> - - <!-- Checkbox --> - <LinearLayout - android:orientation="horizontal" - android:layout_width="match_parent" - android:layout_height="wrap_content"> - <CheckBox android:id="@+id/remember" - android:layout_width="wrap_content" - android:layout_height="wrap_content" /> - <TextView - android:paddingLeft="4dip" - android:text="@string/geolocation_permissions_prompt_remember" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:textSize="14dip" - android:textColor="@color/black" /> - </LinearLayout> - - <!-- Buttons --> - <LinearLayout - android:layout_width="match_parent" - android:layout_height="wrap_content"> - <Button android:id="@+id/share_button" - android:text="@string/geolocation_permissions_prompt_share" - android:layout_weight="1" - android:layout_width="0dip" - android:layout_height="wrap_content" /> - <Button android:id="@+id/dont_share_button" - android:text="@string/geolocation_permissions_prompt_dont_share" - android:layout_weight="1" - android:layout_width="0dip" - android:layout_height="wrap_content" /> - </LinearLayout> - + android:text="@string/geolocation_permissions_prompt_dont_share" /> + <Button + android:id="@+id/share_button" + style="?android:attr/buttonBarButtonStyle" + android:layout_weight="1" + android:layout_width="0dip" + android:layout_height="wrap_content" + android:text="@string/geolocation_permissions_prompt_share" /> </LinearLayout> </LinearLayout> + </com.android.browser.GeolocationPermissionsPrompt> |