我有一个使用此类设计的自定义ListView:
正如您所看到的,当我将鼠标悬停在textview上时,它会显示textview的长度,即match_parent
此布局的XML代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="400dp"
android:layout_height="match_parent"
android:orientation="horizontal"
android:paddingBottom="15dp"
android:paddingLeft="20dp"
android:paddingTop="15dp" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher" />
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="47dp"
android:gravity="center_vertical"
android:paddingLeft="10dp"
android:text="Settings"
android:textSize="19dp" />
但是当我将应用程序部署到我的手机时,“按下”的颜色只显示在文本的末尾,而不是整个文本视图,我的意思是,而不是显示在屏幕的末尾。
我该怎样设法这样做?提前谢谢!
修改
我忘记的线索是为layout_width
match_parent
到LinearLayout