2011-08-25 38 views

Trả lời

2

Vâng khi tôi đã cố gắng để làm cho thanh hành động riêng của tôi, tôi sử dụng một FrameLayout đen, trong đó tất cả các mục của thanh tác vụ sẽ được hiển thị. Tôi đặt thuộc tính layout_margin trên mỗi mục tại 1dp để nó xuất hiện như có một dấu tách màu đen ở hai bên - nếu bạn muốn nó lớn hơn, bạn có thể tăng lề.

<FrameLayout 
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
android:background="#000000"> 
    <LinearLayout 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:orientation="horizontal"> 
     <ImageButton ....... /> 
     <ImageButton ...... android:layout_marginLeft="1dp"/> <!-- this will be shown as a separator--> 
    </LinearLayout> 
</FrameLayout> 
Các vấn đề liên quan