diff options
author | Romain Guy <romainguy@android.com> | 2010-01-08 15:06:43 -0800 |
---|---|---|
committer | Romain Guy <romainguy@android.com> | 2010-01-08 15:11:41 -0800 |
commit | 15b8ec6b226f4d57307716e1f495e10a91f8cbf4 (patch) | |
tree | fca32553554723742e4ccdf7dd7ae0cc0c8432e1 /res/layout/geolocation_permissions_prompt.xml | |
parent | 2290d2174a096d537f8cf899243ecaa9cb88ad5b (diff) | |
download | packages_apps_browser-15b8ec6b226f4d57307716e1f495e10a91f8cbf4.zip packages_apps_browser-15b8ec6b226f4d57307716e1f495e10a91f8cbf4.tar.gz packages_apps_browser-15b8ec6b226f4d57307716e1f495e10a91f8cbf4.tar.bz2 |
Deprecate fill_parent and introduce match_parent.
Bug: #2361749.
Diffstat (limited to 'res/layout/geolocation_permissions_prompt.xml')
-rwxr-xr-x | res/layout/geolocation_permissions_prompt.xml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/res/layout/geolocation_permissions_prompt.xml b/res/layout/geolocation_permissions_prompt.xml index 357da00..cdb25d2 100755 --- a/res/layout/geolocation_permissions_prompt.xml +++ b/res/layout/geolocation_permissions_prompt.xml @@ -18,13 +18,13 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:fitsSystemWindows="true" - android:layout_width="fill_parent" + android:layout_width="match_parent" android:layout_height="wrap_content"> <!-- Use an inner element as we can't show a hidden outermost element --> <LinearLayout android:id="@+id/inner" android:orientation="vertical" - android:layout_width="fill_parent" + android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@color/black" android:paddingTop="1px" @@ -33,21 +33,21 @@ <!-- White line --> <View android:orientation="vertical" - android:layout_width="fill_parent" + android:layout_width="match_parent" android:layout_height="1px" android:background="@color/white" /> <!-- Container for content --> <LinearLayout android:orientation="vertical" - android:layout_width="fill_parent" - android:layout_height="fill_parent" + 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="fill_parent" + android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="14dip" android:textColor="@color/black" /> @@ -55,7 +55,7 @@ <!-- Checkbox --> <LinearLayout android:orientation="horizontal" - android:layout_width="fill_parent" + android:layout_width="match_parent" android:layout_height="wrap_content"> <CheckBox android:id="@+id/remember" android:layout_width="wrap_content" @@ -71,7 +71,7 @@ <!-- Buttons --> <LinearLayout - android:layout_width="fill_parent" + android:layout_width="match_parent" android:layout_height="wrap_content"> <Button android:id="@+id/share_button" android:text="@string/geolocation_permissions_prompt_share" |