我想动态显示文字,例如我想要的是显示一些文字,然后点击按钮“view>”文本显示在一个框中。
我尝试的是使用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;
}
}
第二个textview正在显示第一个文本。那么可以显示这样的文字吗?否则应该采取什么措施来克服混乱的文本视图?
答案 0 :(得分:0)
你的结果是正常的。实际上,您已经使用了RelativeLayout,并且已将两个文本放在同一位置(使用margin属性)。因此,您可以使用LinearLayout而不是Relative Layout,或者您可以通过修改边距值或使用android:layout_below
来更改第二个textView的位置。