-1

我想动态显示文本,就像在此处输入图像描述我想要的是显示一些文本,然后单击按钮“查看>”文本会显示在一个框中。

我尝试的是使用 2 个文本视图作为

<LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/textView1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_marginBottom="10dip"
                android:layout_marginLeft="10dip"
                android:layout_marginRight="10dip"
                android:layout_marginTop="2dip"
                android:text="some text"
                                    />

            <Button
                android:id="@+id/button1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@null"
                android:text="view >>"
                android:textSize="9sp" />

            <TextView
                android:id="@+id/textView2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_marginBottom="10dip"
                android:layout_marginLeft="10dip"
                android:layout_marginRight="10dip"
                android:layout_marginTop="2dip"
                android:text=" yes"
                                  android:textSize="11.0sp"
                android:visibility="invisible" />
        </RelativeLayout>

代码:

public void onClick(View v)
 {
        switch(v.getId())
        {
        case R.id.button1:
            tv1.setVisibility(View.VISIBLE);
            break;
        }
}

发生的事情是第二个文本视图在第一个文本视图上显示文本。那么是否可以显示这样的文本?否则应该怎么做才能克服混乱的文本视图?

4

1 回答 1

0

你的结果是正常的。实际上,您已经使用了 RelativeLayout 并且将两个文本都放在了同一个位置(带有边距属性)。所以你可以使用 LinearLayout 而不是Relative Layout,或者你可以通过修改margin值来改变第二个textView的位置,或者使用android:layout_below.

于 2012-08-30T13:25:17.393 回答