summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Guy <romainguy@android.com>2010-01-08 15:07:17 -0800
committerRomain Guy <romainguy@android.com>2010-01-08 15:12:04 -0800
commit89ed5d0ede93be7664ebf4bc76029c5ec57e8a85 (patch)
tree6c50b15777247a68daead05ceb9e67a2dd74dc98
parent1b62df5bd883a1d2e81a1e56792fdc450dced03c (diff)
downloadandroid_packages_providers_DownloadProvider-89ed5d0ede93be7664ebf4bc76029c5ec57e8a85.tar.gz
android_packages_providers_DownloadProvider-89ed5d0ede93be7664ebf4bc76029c5ec57e8a85.tar.bz2
android_packages_providers_DownloadProvider-89ed5d0ede93be7664ebf4bc76029c5ec57e8a85.zip
Deprecate fill_parent and introduce match_parent.
Bug: #2361749.
-rw-r--r--res/layout/status_bar_ongoing_event_progress_bar.xml20
1 files changed, 10 insertions, 10 deletions
diff --git a/res/layout/status_bar_ongoing_event_progress_bar.xml b/res/layout/status_bar_ongoing_event_progress_bar.xml
index d81c42ba..65c31560 100644
--- a/res/layout/status_bar_ongoing_event_progress_bar.xml
+++ b/res/layout/status_bar_ongoing_event_progress_bar.xml
@@ -18,21 +18,21 @@
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
android:orientation="vertical"
android:background="@android:drawable/status_bar_item_app_background"
>
<LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
android:orientation="horizontal"
>
<LinearLayout
android:layout_width="40dp"
- android:layout_height="fill_parent"
+ android:layout_height="match_parent"
android:orientation="vertical"
android:paddingTop="8dp"
android:focusable="true"
@@ -56,14 +56,14 @@
</LinearLayout>
<RelativeLayout
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
android:orientation="vertical"
android:focusable="true"
android:clickable="true"
>
<LinearLayout
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:focusable="true"
@@ -90,7 +90,7 @@
</LinearLayout>
<ProgressBar android:id="@+id/progress_bar"
style="?android:attr/progressBarStyleHorizontal"
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:paddingBottom="8dp"
@@ -100,7 +100,7 @@
</LinearLayout>
<com.android.server.status.AnimatedImageView
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@android:drawable/divider_horizontal_bright"
/>