diff options
author | Dianne Hackborn <hackbod@google.com> | 2010-08-18 17:47:39 -0700 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2010-08-18 17:47:39 -0700 |
commit | a712c3b7b5a17129d016ede082e3e3b2bbd31f9a (patch) | |
tree | 4837794c21438b535fc1fd7e1da109feae5820e3 /res/layout | |
parent | f8a91b535b05619061dad5870db2318b012bbc0b (diff) | |
download | packages_apps_Settings-a712c3b7b5a17129d016ede082e3e3b2bbd31f9a.zip packages_apps_Settings-a712c3b7b5a17129d016ede082e3e3b2bbd31f9a.tar.gz packages_apps_Settings-a712c3b7b5a17129d016ede082e3e3b2bbd31f9a.tar.bz2 |
A couple small settings fixes:
- Correctly position WIFI/GPS charts.
- Start out with running services hidden in case we need to show
the progress bar.
Change-Id: I8852f334f68f4e9122b5d688d9fd57d0f94d94d8
Diffstat (limited to 'res/layout')
-rwxr-xr-x | res/layout/manage_applications.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/res/layout/manage_applications.xml b/res/layout/manage_applications.xml index 758e476..2716460 100755 --- a/res/layout/manage_applications.xml +++ b/res/layout/manage_applications.xml @@ -20,7 +20,8 @@ <FrameLayout android:id="@+id/list_container" android:layout_width="match_parent" - android:layout_height="match_parent"> + android:layout_height="match_parent" + android:visibility="gone"> <ListView android:id="@android:id/list" android:drawSelectorOnTop="false" android:layout_width="match_parent" @@ -36,7 +37,8 @@ <view class="com.android.settings.applications.RunningProcessesView" android:id="@+id/running_processes" android:layout_width="match_parent" - android:layout_height="match_parent" /> + android:layout_height="match_parent" + android:visibility="gone" /> <LinearLayout android:id="@+id/loading_container" android:orientation="vertical" |