在LinearLayout中保持textview高度

时间:2013-11-09 07:18:58

标签: android

我在LinearLayout中有两个TextView。布局方向是水平的。我必须保持Textview高度相等。但是根据文本长度,两者都显示在不同的高度。

我曾试图像下面那样制作相同的文字长度

public static String padRight(String s, int n) {

 return String.format("%1$-" + n + "s", s);  

}

但身高有点不同。我该如何解决这个问题?

2 个答案:

答案 0 :(得分:2)

如果我没有误解你,你想TextView在水平导向LinearLayout内,而TextView s必须在同一高度。

然后使用如下所示的布局:

<LinearLayout 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"
    android:orientation="horizontal" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1" 
        android:background="#B40431"
        android:text="text sample\ntext sample\ntext sample\ntext sample\ntext sample\ntext sample\n"
        android:gravity="center_vertical"/>

    <TextView
        android:id="@+id/textView2"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1" 
        android:background="#0000FF"
        android:text="text sample\ntext sample\ntext sample"
        android:gravity="center_vertical"/>

</LinearLayout>

输出将是这样的:

enter image description here

答案 1 :(得分:1)

因为文本是长文本视图变大所以你设置textView的singleLine为true然后它将工作,

在Textview xml中添加以下行: -

    android:singleLine="true" 
希望它可以帮助你..