2012-04-23 66 views
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> 

那麼如何定製位置?

請發表意見。謝謝

回答

0

使用TableLayout。這與HTML Table概念類似,允許您定義放置按鈕和其他組件的行和列。

如果你不想使用表格佈局了整個屏幕,你應該能夠巢內的另一個....佈局

+0

在何處使用表格佈局?滑動抽屜下方? – 2012-04-23 07:15:25