嗨,我是新來的android和我試圖找到我的方式與xml.I'm編寫我自己的自定義listView到目前爲止我所做的是一個圖像視圖和附近3 textViews它的工作好,事情是,現在我需要在每個textView旁邊放置3個textFields,但我已經使用linearLayout,所以它不會讓我把它們放在near.When我改變線性相對所有textViews丟失。我知道我在做錯事情,我想用方向或類似的東西。我會發布我迄今爲止所做的,希望它不會模糊。感謝您的時間。xml在android中設計
<?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="?android:attr/listPreferredItemHeight"
android:padding="6dip">
<ImageView
android:id="@+id/icon"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_marginRight="6dip"
android:src="@drawable/clndr" />
<LinearLayout
android:orientation="vertical"
android:layout_width="0dip"
android:layout_weight="1"
android:layout_height="fill_parent">
<TextView
android:id="@+id/toptext"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="0.93"
android:gravity="center_vertical" />
<TextView
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:id="@+id/bottomtext"
android:singleLine="true"
android:ellipsize="marquee"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:id="@+id/bt"
android:singleLine="true"
/>
</LinearLayout>
沒有我的意思是我想要它,但我還想附加每個textView旁邊的textField。 – user1746708