我想动态显示文本,就像我想要的是显示一些文本,然后单击按钮“查看>”文本会显示在一个框中。
我尝试的是使用 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;
}
}
发生的事情是第二个文本视图在第一个文本视图上显示文本。那么是否可以显示这样的文本?否则应该怎么做才能克服混乱的文本视图?