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-land | |
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-land')
-rw-r--r-- | res/layout-land/http_authentication.xml | 4 | ||||
-rw-r--r-- | res/layout-land/page_info.xml | 6 | ||||
-rw-r--r-- | res/layout-land/ssl_certificate.xml | 10 |
3 files changed, 10 insertions, 10 deletions
diff --git a/res/layout-land/http_authentication.xml b/res/layout-land/http_authentication.xml index b2f012d..c008ceb 100644 --- a/res/layout-land/http_authentication.xml +++ b/res/layout-land/http_authentication.xml @@ -15,13 +15,13 @@ --> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="fill_parent" + android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center_horizontal" android:orientation="vertical"> <TableLayout - android:layout_width="fill_parent" + android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="12dip" android:gravity="center_horizontal" > diff --git a/res/layout-land/page_info.xml b/res/layout-land/page_info.xml index 63d18ca..f4397a5 100644 --- a/res/layout-land/page_info.xml +++ b/res/layout-land/page_info.xml @@ -16,12 +16,12 @@ <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="fill_parent" + android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" > <LinearLayout - android:layout_width="fill_parent" + android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" > @@ -40,7 +40,7 @@ <!-- Address: --> <TableLayout - android:layout_width="fill_parent" + android:layout_width="match_parent" android:layout_height="wrap_content" android:shrinkColumns="1" android:orientation="vertical"> diff --git a/res/layout-land/ssl_certificate.xml b/res/layout-land/ssl_certificate.xml index d6036c1..44c5904 100644 --- a/res/layout-land/ssl_certificate.xml +++ b/res/layout-land/ssl_certificate.xml @@ -16,11 +16,11 @@ <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="fill_parent" + android:layout_width="match_parent" android:layout_height="wrap_content" > <LinearLayout - android:layout_width="fill_parent" + android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" > @@ -28,7 +28,7 @@ <LinearLayout android:id="@+id/placeholder" android:layout_height="wrap_content" - android:layout_width="fill_parent" + android:layout_width="match_parent" android:layout_marginTop="12dip" android:orientation="vertical" /> @@ -36,7 +36,7 @@ <ImageView android:id="@+id/title_separator" android:src="@android:drawable/divider_horizontal_dark" - android:layout_width="fill_parent" + android:layout_width="match_parent" android:layout_height="wrap_content" android:scaleType="fitXY" android:layout_weight="1" @@ -46,7 +46,7 @@ android:layout_marginBottom="12dip" /> <TableLayout - android:layout_width="fill_parent" + android:layout_width="match_parent" android:layout_height="wrap_content" android:shrinkColumns="1" android:orientation="vertical"> |