Android同行文本视图

时间:2011-08-10 10:58:56

标签: android xml

在我的Android应用程序中,我想在同一行中实现2个文本字段。如果文字太长了可以去下一行。所以我使用了横向更精简的布局并添加了2个文本字段。

<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/linearLayout1">
<TextView android:text="TextView" android:id="@+id/textView2" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
<TextView android:text="TextView" android:id="@+id/textView3" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView></LinearLayout> 

[例如:TextView1,TextView2]

问题是当TextView1的文本有点长时,它仍然试图在一行中打印并且搞乱。

我想要的结果是,

如果

TextView1 = aaaaaaaaaaaaaaaaaaaa&amp; TextView2 = bbbbbbbbbbbbbbbbb

aaaaaaaaaaaaaaaaaaaa, bbbbbbbbbbb
bbbbbb

是否有人知道如何做到这一点。谢谢。

2 个答案:

答案 0 :(得分:0)

试试这个

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
<TextView  
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="This is the textview1 in the linearlayout"
    android:layout_weight="1"
    android:background="#0a30aa"
    />
<TextView  
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="this is textview2 in the linearlayout"
    android:layout_weight="1"
    android:background="#990099"
    />
</LinearLayout>

答案 1 :(得分:0)

添加

android:layout_weight="1"

将为您的文字视图提供属性。