动态设置滑动抽屉高度
我想动态或静态地定义滑动抽屉高度的高度。 下面是我的 xml 布局文件。任何建议将不胜感激。
<?xml version="1.0" encoding="utf-8"?>
<SlidingDrawer android:layout_width="fill_parent"
android:id="@+id/SlidingDrawer" android:handle="@+id/slideHandleButton"
android:content="@+id/contentLayout" android:layout_height="wrap_content">
<ImageView android:layout_width="fill_parent"
android:layout_height="wrap_content" android:id="@+id/slideHandleButton"
android:background="@drawable/icon_movie"></ImageView>
<LinearLayout android:layout_width="fill_parent"
android:id="@+id/contentLayout" android:gravity="center"
android:background="#C0C0C0" android:layout_height="wrap_content">
<Gallery android:id="@+id/gallery" android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</SlidingDrawer>
</FrameLayout>
I would like to define the height of sliding drawer height dynamically or statically whatever.
Below is my xml layout file. Any suggestion would be appreciate.
<?xml version="1.0" encoding="utf-8"?>
<SlidingDrawer android:layout_width="fill_parent"
android:id="@+id/SlidingDrawer" android:handle="@+id/slideHandleButton"
android:content="@+id/contentLayout" android:layout_height="wrap_content">
<ImageView android:layout_width="fill_parent"
android:layout_height="wrap_content" android:id="@+id/slideHandleButton"
android:background="@drawable/icon_movie"></ImageView>
<LinearLayout android:layout_width="fill_parent"
android:id="@+id/contentLayout" android:gravity="center"
android:background="#C0C0C0" android:layout_height="wrap_content">
<Gallery android:id="@+id/gallery" android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</SlidingDrawer>
</FrameLayout>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以将高度设置为特定高度,例如
200dp
,也可以使用类似 如果您想使用wrap_content
,请使用此解决方法。You can set the height to a specific height such as
200dp
, or you can use something like this workaround if you want to usewrap_content
.只需在 xml 中的滑动抽屉中设置 pmargin
just set to pmargin in sliding drawer in your xml
使用 SlidingDrawer 的 topOffset 属性。
像这样...
Use topOffset attribute for SlidingDrawer.
like this...