1

我研究了许多来源并尝试过,但仍然无法将手柄的位置从中心移到右侧。

    <SlidingDrawer
        content >

        <ImageButton                                  <-- this is handle
            android:id="@+id/handle"                  <-- i want to customize position
            android:layout_width="50px"
            android:layout_height="60px"
            android:background="@drawable/icon_other" />

        <LinearLayout
            android:id="@+id/content"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/background_others"
            android:orientation="vertical" >

            //content
        </LinearLayout>
    </SlidingDrawer>

那么如何自定义位置呢?

请给意见。谢谢

4

1 回答 1

0

使用表格布局。这类似于 HTML Table 概念,允许您定义放置按钮和其他组件的行和列。

如果您不想在整个屏幕上使用表格布局,您应该能够将布局嵌套在另一个中......

于 2012-04-23T05:16:54.717 回答