如何设置textview的大小取决于文本的长度?

时间:2014-02-04 07:02:01

标签: android css

我正面临着这样的情况:

我分别在左侧和右侧有两个文本视图,左侧有一个固定内容,右侧有内容长度取决于从数据库获取的数据。

我希望两个文本视图具有相同的高度,因此我将两个高度设置为wrap_content,并在设置文本的代码后使用getHeight()setHeight()来更改左边的高度由于内容长,右边的高度会延长。结果,仍然有不同的高度。

有人可以告诉我哪个部分是错的,并建议一些方法来改变左边的高度取决于右边的高度除了设置两个textview的固定高度?

 <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="horizontal" >

            <TextView
                android:id="@+id/bName"
                android:layout_width="150dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:background="@drawable/add_book_review_top_left"
                android:gravity="center"
                android:padding="5dp"
                android:text="@string/bName"
                android:textStyle="bold" />

            <TextView
                android:id="@+id/input_bName"
                android:layout_width="150dp"
                android:layout_height="wrap_content"
                android:padding="5dp"
                android:background="@drawable/add_book_review_top_right"
                android:layout_weight="1" />
        </LinearLayout>

1 个答案:

答案 0 :(得分:0)

android:layout_width="wrap_content"

尝试以下代码

<TextView
android:id="@+id/bName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/add_book_review_top_left"
android:gravity="center"
android:padding="5dp"
android:text="@string/bName"
android:textStyle="bold" />