我希望我的行高50dp,但出于某种原因它只会wrap_content
。
这是我的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="50dp"
android:background="@drawable/master_selector" >
<ImageView
android:id="@+id/icon"
android:layout_width="wrap_content"
android:layout_height="25dp"
android:layout_gravity="center_vertical"
android:layout_marginTop="3dp"
android:contentDescription="Category" >
</ImageView>
<TextView
android:id="@+id/label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginLeft="5dp"
android:text="@+id/label"
android:textColor="#ebebeb"
android:textSize="25sp" >
</TextView>
</LinearLayout>
我无法弄清楚为什么50dp没有效果?它在常规的ListView
上编辑:屏幕截图:
如您所见,行紧密相连。文本只有25sp(常规文本大小)。
修改:将TextView
身高更改为50dp
,将gravity
更改为center_vertical
即可解决问题。
答案 0 :(得分:1)
在某些实现中,可能很容易忘记膨胀视图的布局值(通常是因为它们与ListView
中的情况一样添加了指定的LayoutParam对象。)
你可以通过添加一个50dp的儿童身高来正确显示它。