这是我在 上显示user's information
的XML ListView
,所以目前它包含两个TextView
我正在显示用户信息的 XML。
问题陈述:-
每当我运行我的应用程序时,我总是看到我的两个Text View
并排出现。例如,我总是得到类似下面的东西 -
SomeImage TextView1 TextView2
这是我不想要的。我需要这样的东西 - 假设我将来有三个 TextView。
SomeImage TextView1
TextView2
TextView3
下面是我目前正在使用的 XML 文件。如何修改它以便始终获得所需的输出?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/image"
android:layout_width="50dip"
android:layout_height="50dip"
android:scaleType="centerCrop"
android:src="@drawable/stub" />
<TextView
android:id="@+id/text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="left|center_vertical"
android:layout_marginLeft="10dip"
android:layout_weight="1"
android:textSize="10dip" />
<TextView
android:id="@+id/text1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="left|center_vertical"
android:layout_marginLeft="10dip"
android:layout_weight="1"
android:textSize="10dip" />
</LinearLayout>