diff options
Diffstat (limited to 'packages/SystemUI/res/layout/navigation_bar.xml')
-rw-r--r-- | packages/SystemUI/res/layout/navigation_bar.xml | 139 |
1 files changed, 89 insertions, 50 deletions
diff --git a/packages/SystemUI/res/layout/navigation_bar.xml b/packages/SystemUI/res/layout/navigation_bar.xml index b97c6a5..51e7d97 100644 --- a/packages/SystemUI/res/layout/navigation_bar.xml +++ b/packages/SystemUI/res/layout/navigation_bar.xml @@ -25,106 +25,145 @@ android:layout_width="match_parent" > - <FrameLayout - android:id="@+id/background" + <FrameLayout android:id="@+id/rot0" android:layout_height="match_parent" android:layout_width="match_parent" android:background="#FF000000" > - <LinearLayout android:id="@+id/rot0" + <LinearLayout android:layout_height="match_parent" android:layout_width="match_parent" - android:paddingLeft="8dip" - android:paddingRight="8dip" android:orientation="horizontal" > <!-- navigation controls --> + <View + android:layout_width="40dp" + android:layout_height="match_parent" + android:layout_weight="0" + /> <com.android.systemui.statusbar.policy.KeyButtonView android:id="@+id/back" - android:layout_width="wrap_content" + android:layout_width="80dp" android:layout_height="match_parent" - android:src="@drawable/ic_sysbar_back" + android:src="@drawable/ic_sysbar_back_default" systemui:keyCode="4" + android:layout_weight="0" + /> + <View + android:layout_width="match_parent" + android:layout_height="match_parent" android:layout_weight="1" /> <com.android.systemui.statusbar.policy.KeyButtonView android:id="@+id/home" - android:layout_width="wrap_content" + android:layout_width="80dp" android:layout_height="match_parent" - android:src="@drawable/ic_sysbar_home" + android:src="@drawable/ic_sysbar_home_default" systemui:keyCode="3" + android:layout_weight="0" + /> + <View + android:layout_width="match_parent" + android:layout_height="match_parent" android:layout_weight="1" /> + <ImageView android:id="@+id/recent_apps" + android:layout_width="80dp" + android:layout_height="match_parent" + android:src="@drawable/ic_sysbar_recent_default" + android:layout_weight="0" + /> <com.android.systemui.statusbar.policy.KeyButtonView android:id="@+id/menu" - android:layout_width="wrap_content" + android:layout_width="40dp" android:layout_height="match_parent" - android:src="@drawable/ic_sysbar_menu" + android:src="@drawable/ic_sysbar_menu_default" systemui:keyCode="82" - android:layout_weight="1" + android:layout_weight="0" + android:visibility="invisible" /> </LinearLayout> - <LinearLayout android:id="@+id/rot90" + <View android:id="@+id/deadzone" + android:layout_height="@dimen/navigation_bar_deadzone_size" + android:layout_width="match_parent" + android:layout_gravity="top" + android:clickable="true" + /> + </FrameLayout> + + <FrameLayout android:id="@+id/rot90" + android:layout_height="match_parent" + android:layout_width="match_parent" + android:background="#FF000000" + android:visibility="gone" + android:paddingTop="24dp" + > + + <LinearLayout android:layout_height="match_parent" android:layout_width="match_parent" android:orientation="vertical" - android:visibility="gone" > - + <!-- navigation controls --> <com.android.systemui.statusbar.policy.KeyButtonView android:id="@+id/menu" + android:layout_height="40dp" android:layout_width="match_parent" - android:layout_height="wrap_content" - android:src="@drawable/ic_sysbar_menu" + android:src="@drawable/ic_sysbar_menu_default_land" systemui:keyCode="82" + android:layout_weight="0" + android:visibility="invisible" + /> + <ImageView android:id="@+id/recent_apps" + android:layout_height="80dp" + android:layout_width="match_parent" + android:src="@drawable/ic_sysbar_recent_default_land" + android:layout_weight="0" + /> + <View + android:layout_height="match_parent" + android:layout_width="match_parent" android:layout_weight="1" /> <com.android.systemui.statusbar.policy.KeyButtonView android:id="@+id/home" + android:layout_height="80dp" android:layout_width="match_parent" - android:layout_height="wrap_content" - android:src="@drawable/ic_sysbar_home" + android:src="@drawable/ic_sysbar_home_default_land" systemui:keyCode="3" - android:layout_weight="1" + android:layout_weight="0" /> - <com.android.systemui.statusbar.policy.KeyButtonView android:id="@+id/back" + <View + android:layout_height="match_parent" android:layout_width="match_parent" - android:layout_height="wrap_content" - android:src="@drawable/ic_sysbar_back" - systemui:keyCode="4" android:layout_weight="1" /> - </LinearLayout> - - <LinearLayout android:id="@+id/rot270" - android:layout_height="match_parent" - android:layout_width="match_parent" - android:orientation="vertical" - android:visibility="gone" - > - - <!-- navigation controls --> <com.android.systemui.statusbar.policy.KeyButtonView android:id="@+id/back" + android:layout_height="80dp" android:layout_width="match_parent" - android:layout_height="wrap_content" - android:src="@drawable/ic_sysbar_back" + android:src="@drawable/ic_sysbar_back_default_land" systemui:keyCode="4" - android:layout_weight="1" - /> - <com.android.systemui.statusbar.policy.KeyButtonView android:id="@+id/home" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:src="@drawable/ic_sysbar_home" - systemui:keyCode="3" - android:layout_weight="1" + android:layout_weight="0" /> - <com.android.systemui.statusbar.policy.KeyButtonView android:id="@+id/menu" + <View + android:layout_height="40dp" android:layout_width="match_parent" - android:layout_height="wrap_content" - android:src="@drawable/ic_sysbar_menu" - systemui:keyCode="82" - android:layout_weight="1" + android:layout_weight="0" /> </LinearLayout> - + + <View android:id="@+id/deadzone" + android:layout_width="@dimen/navigation_bar_deadzone_size" + android:layout_height="match_parent" + android:layout_gravity="left" + android:clickable="true" + /> </FrameLayout> + + <!-- not used --> + <View android:id="@+id/rot270" + android:layout_height="match_parent" + android:layout_width="match_parent" + android:visibility="gone" + /> + </com.android.systemui.statusbar.phone.NavigationBarView> |