滑动抽屉 - 如何让它从上方拉出?
Sliding drawer - how to make it pull from above?
我正在为 2 位玩家制作游戏,这是一个模型,问题出在顶部的滑动抽屉上 - 紫色抽屉。 "handle" 按钮必须与下面的蓝色手柄正好相反。我该如何扭转它?
如果顶部紫色抽屉是RelativeLayout
,只需在按钮中将ALIGN_PARENT_TOP
to true
. If the drawer is not a RelativeLayout
, declare one RelativeLayout
(which fills all the purple drawer) inside it and put in it the button with ALIGN_PARENT_TOP
设置为true
。
然后,为了使按钮中的文本颠倒,只需将 android:rotation="180"
添加到 XML 文件中的按钮,或者以编程方式将按钮旋转 180 度。
我正在为 2 位玩家制作游戏,这是一个模型,问题出在顶部的滑动抽屉上 - 紫色抽屉。 "handle" 按钮必须与下面的蓝色手柄正好相反。我该如何扭转它?
如果顶部紫色抽屉是RelativeLayout
,只需在按钮中将ALIGN_PARENT_TOP
to true
. If the drawer is not a RelativeLayout
, declare one RelativeLayout
(which fills all the purple drawer) inside it and put in it the button with ALIGN_PARENT_TOP
设置为true
。
然后,为了使按钮中的文本颠倒,只需将 android:rotation="180"
添加到 XML 文件中的按钮,或者以编程方式将按钮旋转 180 度。