我为导航标签创建了一个自定义视图。没关系。但是,此布局存在两个问题:图标显示在中心位置稍上方,文本覆盖导航指示器。导航选项卡如下所示:
这是我的自定义布局xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/navigation_tab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:src="@drawable/ic_search" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Search"
android:textSize="12sp" />
</LinearLayout>
答案 0 :(得分:0)
尝试使用android:padding
属性。