setVisibility(View.VISIBLE)不显示TextView

时间:2015-10-10 11:02:46

标签: android

我在res/layout/main.xml中有以下布局,第二个TextView隐藏

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="match_parent"
              android:layout_height="match_parent">
    <TextView android:id="@+id/tv1"
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
              android:text="Hello"/>
    <TextView android:id="@+id/tv2"
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
              android:text="world"
              android:visibility="gone"/>
</LinearLayout>

此Android活动应显示第二个TextView

public class MainActivity extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        View tv2 = findViewById(R.id.tv2);
        tv2.setVisibility(View.VISIBLE);
    }
}

但是当显示活动时,只显示第一个TextView

那么,这里有什么问题?如何使第二个TextView可见 编程?

1 个答案:

答案 0 :(得分:1)

虽然解决方案很简单,但我花了很多时间 是时候搞清楚了。

“不可见”元素的原因是默认方向 LinearLayout。 一开始就说

  

课程概述
  ...默认方向是水平的。

两个TextView的宽度都为match_parent,这意味着第一个 TextView已经占据了父级的整个宽度。自从我 忘了明确设置orientation,第二个TextView是 向右倾斜,因此不在屏幕上。

orientation设置为vertical修复了此问题并制作了 第二个TextView可见

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:orientation="vertical">
    <!-- ... -->
</LinearLayout>