nếu bạn sử dụng actionBarSherlock, bạn có thể sử dụng lớp com.actionbarsherlock.iternal.widget.IcsLinearLayout để hỗ trợ các bộ chia và hiển thị chúng giữa các khung nhìn.
ví dụ về việc sử dụng:
<com.actionbarsherlock.internal.widget.IcsLinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:divider="@drawable/divider"
android:dividerPadding="10dp"
android:orientation="vertical"
android:showDividers="beginning|middle|end" >
... children...
res / drawable / spliter.xml:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<size android:height="2dip" />
<solid android:color="#FFff0000" />
</shape>
xin lưu ý rằng vì một số lý do, phần xem trước trong trình thiết kế đồ họa cho biết "android.graphics.bitmap_delegate.nativeRecycle (I) Z". không chắc nó có nghĩa gì, nhưng nó có thể bị bỏ qua vì nó hoạt động tốt trên cả phiên bản mới của Android và phiên bản cũ (đã thử nghiệm trên Android 4.2 và 2.3).
có vẻ như lỗi chỉ được hiển thị khi sử dụng API17 cho trình thiết kế đồ họa.