SlidingDrawer的对齐问题

发布于 2024-12-02 05:09:00 字数 1150 浏览 1 评论 0原文

我创建了一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挽你眉间 2024-12-09 05:09:00

像这样的东西可能会起作用

    <LinearLayout  android:id="@+id/drawerHandle"
        android:layout_height="wrap_content"
        android:layout_width="fill_parent"
        android:background="@android:color/transparent
        android:gravity="right"
    >
      <Button        
         android:text="list"
         android:layout_height="wrap_content"
         android:layout_width="wrap_content">
      </Button>
    </LinearLayout>

something like this might work

    <LinearLayout  android:id="@+id/drawerHandle"
        android:layout_height="wrap_content"
        android:layout_width="fill_parent"
        android:background="@android:color/transparent
        android:gravity="right"
    >
      <Button        
         android:text="list"
         android:layout_height="wrap_content"
         android:layout_width="wrap_content">
      </Button>
    </LinearLayout>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文