我正在尝试在我的(android)操作栏和下面的拆分选项卡之间设置一个 1px 的分隔线。怎么做到呢?
谢谢,
我正在尝试在我的(android)操作栏和下面的拆分选项卡之间设置一个 1px 的分隔线。怎么做到呢?
谢谢,
只需将此视图放在 actionBar 和 splitTabs 之间
垂直的:
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:background="@android:color/darker_gray"/>
水平的:
<View
android:layout_width="1dp"
android:layout_height="fill_parent"
android:background="@android:color/darker_gray"/>
您可以在 java 中以与上面相同的方式动态执行此操作:
View div = new View(this);
div.setBackgroundColor(0xaaaaaa);
div.setLayoutParams(new ViewGroup.LayoutParams(1,-1));
我从未测试过代码,但它会是类似的。