SlidingDrawer的对齐问题
我创建了一个 SlidingDrawer,其中包含列表视图,我想将 SlidingDrawer 的手柄对齐在屏幕的右上角,但它始终对齐在中心...请建议我如何解决这个问题...
<SlidingDrawer
android:gravity="right"
android:id="@+id/slidingDrawer"
android:handle="@+id/drawerHandle"
android:content="@+id/contentLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<Button
android:id="@+id/drawerHandle"
android:text="list"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_width="wrap_content">
</Button>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/contentLayout"
android:gravity="center"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@android:color/black">
<ListView
android:id="@+id/list"
android:layout_width="fill_parent" android:layout_height="wrap_content"/>
</LinearLayout>
</SlidingDrawer>
I have created a SlidingDrawer which content the list view i want to align the handle of the SlidingDrawer at the right corner of the screen but it always align at the center ...please suggest me how to solve this problem...
<SlidingDrawer
android:gravity="right"
android:id="@+id/slidingDrawer"
android:handle="@+id/drawerHandle"
android:content="@+id/contentLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<Button
android:id="@+id/drawerHandle"
android:text="list"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_width="wrap_content">
</Button>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/contentLayout"
android:gravity="center"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@android:color/black">
<ListView
android:id="@+id/list"
android:layout_width="fill_parent" android:layout_height="wrap_content"/>
</LinearLayout>
</SlidingDrawer>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样的东西可能会起作用
something like this might work