在我的活动布局中,我如何处理我不知道它有多长的长文本?
我有一个文本视图,当它太长时,它覆盖我的按钮。

最佳答案

你说的是文本视图还是按钮?如果它是文本视图,您可以使用如下所示的字幕文本视图。它将自动滚动,以便显示所有文本

<TextView
            android:id="@+id/textview"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:ellipsize="marquee"

            android:lines="1"
            android:fadingEdge="horizontal"
            android:marqueeRepeatLimit="marquee_forever"
            android:scrollHorizontally="true"
            android:text="Your Looooooooooooooooooooooooooooooooooooooooong text!"
            android:textColor="#000"
            android:textSize="15dp" />

在你的密码里,
    textview.setSelected(true);
    textview.setEllipsize(TruncateAt.MARQUEE);
    textview.setHorizontallyScrolling(true);
    textview.setSingleLine(true);
    textview.setLines(1);

如果需要可展开的文本视图,请执行以下操作。它有一个按钮可展开/折叠文本视图。
在XML中,
 <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=".MainActivity" >

    <RelativeLayout
        android:id="@+id/relativeLayout1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true" >

        <TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:text="sdfsdfsdfsfasfdsfgdfgdfsgsdfgsdfgsdfgsdgsdgdsgdsgsdfgdsgdsfgsdfgsdgsdfgsdfgdsfgsdgdsgfsdgfsdgsdfgdsgdsfgdsfgdsfgsdghjghjghjghjghjfg"
            android:textAppearance="?android:attr/textAppearanceMedium" />
    </RelativeLayout>

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/relativeLayout1"
        android:text="Button" />

</RelativeLayout>

在密码里,
boolean checkflag = true;// declare it as public

final RelativeLayout rl=(RelativeLayout)findViewById(R.id.relativeLayout1);


    Button b=(Button)findViewById(R.id.button1);
    final TextView text=(TextView)findViewById(R.id.textView1);



    b.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View arg0) {
            // TODO Auto-generated method stub

            if(checkflag==true)
            {

            text.setSingleLine(true);
            checkflag=false;
            }

            else
            {
                text.setSingleLine(false);
                checkflag=true;
            }

        }
    });

10-06 11:08