我为一个Android应用程序制作了一个自定义抽屉,但是有一个问题是第一个项目的hight比所有其他项目更大..我的导航抽屉的XML代码是:
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<!-- other Layouts here -->
<!-- My custom list here -->
<ListView
android:id="@+id/left_drawer"
android:layout_width="200dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="#F3F3F4"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp" >
</ListView>
</android.support.v4.widget.DrawerLayout>
ListView自定义适配器布局代码在此处:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#efefef" >
<ImageView
android:id="@+id/icon"
android:layout_width="25dp"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginBottom="10dp"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginTop="10dp"
android:contentDescription="@string/desc_list_item_icon"
android:src="@drawable/logout_icon" />
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toRightOf="@id/icon"
android:textColor="@color/list_item_title"
android:textSize="13sp" />
<ImageView
android:id="@+id/ivAeroo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="10dp"
android:src="@drawable/rightorangearrowicon" />
<View
android:id="@+id/view1"
android:layout_width="fill_parent"
android:layout_height="3dp"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:background="#ababab" />
</RelativeLayout>
我的布局仍然制作第一项大像这样..
答案 0 :(得分:1)
检查您用于ImageView的图像(id =图标)。
我很确定它们的大小不一样。
答案 1 :(得分:0)
尝试
android:layout_height="fill_parent"
而不是
android:layout_height="wrap_content"
带有id = icon 的ImageView的