我无法弄清楚为什么以及如何阻止线性布局重叠导航栏。我熟悉Android Studio,而不是版本2+。
这个问题从来都不是,我尝试了多次搜索并试图解决这个问题。 (下面的截图)。
答案 0 :(得分:0)
将其放在LinearLayout
文件的content_main.xml
代码中。
android:layout_width="match_parent"
android:layout_height="match_parent"
答案 1 :(得分:0)
在LinearLayout
设置填充顶部50dp
android:paddingTop="50dp"
答案 2 :(得分:0)
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="20dp"
android:layout_marginBottom="20dp"
您可以根据布局位置更改边距值。