2012-11-24 97 views
2

這是一個非常簡單的問題,但我沒有得到如何去做。 我有一個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()); 

在此先感謝。

回答

5

更改LinearLayout的方向android:orientation="horizontal"

編輯

又如何,如果我想以顯示它想:在一行TXT1和TXT2 txt3在第二行?

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" > 

    <TextView 
     android:id="@+id/textView1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentLeft="true" 
     android:layout_alignParentTop="true" 
     android:layout_marginLeft="5dp" 
     android:layout_marginTop="5dp" 
     android:text="1" /> 

    <TextView 
     android:id="@+id/textView2" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignLeft="@+id/textView1" 
     android:layout_below="@+id/textView1" 
     android:text="2" /> 

    <TextView 
     android:id="@+id/textView3" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_below="@+id/textView1" 
     android:layout_marginLeft="5dp" 
     android:layout_toRightOf="@+id/textView2" 
     android:text="3" /> 

</RelativeLayout> 
+0

好吧,我很笨:D謝謝 – Davis

+0

如果我想如下顯示它: txt1在一行和txt2 txt3在第二行? – Davis

+0

我已經更新了我的答案:txt1在一行中,而txt2 txt3在第二行中。 –

1

你需要做的是定向僅改變從垂直到水平。