我正在对launcher2进行一些更改,就像有些人一样,我正在试图将hotseat bar位置更改为top而不是bottom,我隐藏了android清单上的通知栏然后我使用launcher.xml上的margin和gravity属性来移动hotseat但只能向右或向左移动而不是顶部,我希望有人可以帮助我。
那就是代码:
<include
android:id="@+id/dock_divider"
layout="@layout/workspace_divider"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginLeft="@dimen/button_bar_height"
android:layout_gravity="top"/>
<include layout="@layout/hotseat"
android:id="@+id/hotseat"
android:layout_width="@dimen/button_bar_height_plus_padding"
android:layout_height="match_parent"
android:layout_gravity="top"/>
感谢自述!!