我的布局有问题。我在我的应用程序中使用ViewPager选项卡布局,我想使用透明操作栏。我设法阻止元素隐藏在操作栏后面,但问题是元素窗口隐藏在标签栏后面。如何解决?
xml文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:paddingTop="?android:attr/actionBarSize"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical"
android:background="#E3F6CE">
<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ListView>
</LinearLayout>
答案 0 :(得分:1)
使用CoordinatorLayout
打包所有组件,并在RelativeLayout app:layout_behavior="@string/appbar_scrolling_view_behavior"
xmlns:app="http://schemas.android.com/apk/res-auto"