我在我的应用程序中设置了tabview但是所有选项卡都显示在彼此附近。 。我想在那之间设置小空间。 。 。 怎么可能? 在此先感谢。
答案 0 :(得分:0)
您可以使用setIndicator(View)
从自己的视图构建选项卡,并在自定义视图中(例如从XML中膨胀)设置适当的边距/填充。有关详细信息,请参阅我的post。
答案 1 :(得分:0)
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout android:orientation="vertical"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<View android:layout_width="fill_parent" android:layout_height="0.5dip"
在这里,我设置0.5你可以st 1 dp你可以设置一个tabdiver.9.png文件。
android:background="#000" />
<TabWidget android:id="@android:id/tabs"
android:layout_width="fill_parent" android:layout_height="55dip"
android:layout_marginLeft="0dip" android:layout_marginRight="0dip" />
<View android:layout_width="fill_parent" android:layout_height="5dip"
android:background="#696969" />
<View android:layout_width="fill_parent" android:layout_height="1dip"
android:background="#000" />
<FrameLayout android:id="@android:id/tabcontent"
android:layout_width="fill_parent" android:layout_height="fill_parent" />
</LinearLayout>
</TabHost>
试试这个。
答案 2 :(得分:0)
您可以在tabview项目中添加空格,方法是在其中添加边距。 请使用以下代码。
for(int i=0; i < mTabLayout.getTabCount(); i++) {
View tab = ((ViewGroup) mTabLayout.getChildAt(0)).getChildAt(i);
ViewGroup.MarginLayoutParams p = (ViewGroup.MarginLayoutParams)
tab.getLayoutParams(); > p.setMargins(0, 0, 50, 0); > tab.requestLayout();
}