我正在开发一个需要底部标签的应用程序。我已经有了标签,但是标签与屏幕的左下角之间有一个空白区域。 我下载了一个示例代码,该代码看起来我想要我的标签,但空格不断出现。
我的申请: http://postimg.org/image/6ft0v2qyn/
我希望我的标签看起来如何: http://postimg.org/image/az9l93ymx/
抱歉,我无法直接发布图片,因为我没有足够的声誉。
XML布局:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<!-- Framelayout to display Fragments -->
<FrameLayout
android:id="@+id/frame_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<TabHost
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"
android:padding="5dp">
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1"/>
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
android:background="@drawable/tab_background" />
</LinearLayout>
</TabHost>
<!-- Listview to display slider menu -->
</android.support.v4.widget.DrawerLayout>
添加标签的功能:
private void addTab(String labelId, int drawableId, Class<?> c)
{
TabHost tabHost = getTabHost();
Intent intent = new Intent(this, c);
TabHost.TabSpec spec = tabHost.newTabSpec("tab" + labelId);
View tabIndicator = LayoutInflater.from(this).inflate(R.layout.tab_indicator, getTabWidget(), false);
TextView title = (TextView) tabIndicator.findViewById(R.id.title);
title.setText(labelId);
ImageView icon = (ImageView) tabIndicator.findViewById(R.id.icon);
icon.setImageResource(drawableId);
spec.setIndicator(tabIndicator);
spec.setContent(intent);
tabHost.addTab(spec);
//tabHost.getTabWidget().setDividerDrawable(null);
//tabHost.setCurrentTab(2);
}
传递函数的参数:
addTab("Send News", R.drawable.icon_sendnews, SendNewsActivity.class);
解决:tabHost有一个5dp填充,我不知道它来自哪里,但当我删除它时,标签采取了我想要的形状:D 任何帮助表示赞赏:)
答案 0 :(得分:0)
可能在您的片段布局中,您尚未删除边距。