我需要一些帮助来将自定义列表视图与图像和文本对齐。
我正在尝试这个:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_weight="1"
android:src="@drawable/ic_launcher" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical|center"
android:paddingTop="20dp"
android:layout_weight="2"
android:text="TextView" />
</LinearLayout>
而且我认为 weight 是保持元素的比例,而不是元素的内容,但显然它关心文本视图内部的东西,所以我的列表看起来很乱。
无论文本在文本视图中多长时间,如何对齐它是相同的?
所以绿线应该是垂直的直线,不管右手边的文字是什么。
肿瘤坏死因子