Android Textview文本作为标记

时间:2016-01-08 00:25:58

标签: android android-layout textview

这有点难以解释,但基本上我要做的是; LinearLayout的宽度取决于文本的长度,如标签,因此文本越长,布局就越大,我不希望文本在另一条线上;

Android Tag

谢谢!

2 个答案:

答案 0 :(得分:1)

<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="match_parent"
tools:context="${relativePackage}.${activityClass}" >

<TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello_world" />

<RelativeLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/textView2"
    android:layout_marginTop="112dp"
    android:layout_toRightOf="@+id/textView2"
    android:background="@drawable/ic_launcher"
    tools:context="${relativePackage}.${activityClass}" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_centerVertical="true"
        android:text="asdsadsaddsadsadasdasdadasd" />
</RelativeLayout>

所以我尝试了这个,布局扩展或缩小了textview的大小

答案 1 :(得分:0)

您需要做的就是:

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:text="asdsadsaddsadsadasdasdadasd" />