這是一個非常簡單的問題,但我沒有得到如何去做。 我有一個listview適配器和一個xml行來顯示每一行。 我想在單行中顯示3個textview。這是我的XML代碼:連續多個textview
<?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">
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/txtElement"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="24px"
android:textColor="#000000">
</TextView>
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/txtElement2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="24px"
android:textColor="#000000">
</TextView>
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/txtElement3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="24px"
android:textColor="#000000">
</TextView>
</LinearLayout>
我要顯示的文字是這樣的:
TXT1 TXT2 txt3
這是我的適配器代碼(但我想這個問題是在XML ):
TextView tv = (TextView) row.findViewById(R.id.txtElement);
tv.setText(currentElement.getTitle());
TextView tv2 = (TextView) row.findViewById(R.id.txtElement2);
tv2.setText(currentElement.getAuthor());
TextView tv3 = (TextView) row.findViewById(R.id.txtElement3);
tv3.setText(""+currentElement.getNumPost());
在此先感謝。
好吧,我很笨:D謝謝 – Davis
如果我想如下顯示它: txt1在一行和txt2 txt3在第二行? – Davis
我已經更新了我的答案:txt1在一行中,而txt2 txt3在第二行中。 –