我有从 sd 卡加载所有音频文件的 listview...有很多文件..但是 listview 看起来很糟糕..每个行高都会自动调整大小取决于行中显示的项目名称..背景是白色的,文本是灰色的所以很难注意到它......我想将每一行高度设置为相同,所以它看起来像这样
这是我的代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ListView
android:id="@+id/PhoneMusicList"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
</ListView>
</LinearLayout>