我在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
可见
编程?
答案 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>