1

Activity以全屏模式运行。由于 中缺少海拔高度Kitkat,因此ViewPager高于Toolbar

这是我的布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/PhotoPager_Layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:theme="@style/ThemeOverlay.AppCompat"
    >
    <include
        android:id="@+id/toolbar"
        layout="@layout/toolbar"
        android:background="@color/md_dark_appbar"
        android:windowActionBarOverlay="true"
        />

    <com.horaapps.leafpic.Views.HackyViewPager
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/photos_pager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>
</RelativeLayout>

这是它的样子: 截屏

关于如何解决这个问题的任何建议?

4

3 回答 3

2

RelativeLayout 中的项目是 z 顺序的。Defaulr oder 是:较早的项目落后于较晚的项目。您的工具栏首先位于 RelativeLayout,因此它位于任何其他视图的后面。

有三种解决方案。你可以使用它们中的任何一个。

  1. 在 RelativeLayout 中重新排序视图:将工具栏移动到结尾:

    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/PhotoPager_Layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:theme="@style/ThemeOverlay.AppCompat"
    >
    
        <com.horaapps.leafpic.Views.HackyViewPager
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/photos_pager"
            android:layout_width="match_parent"
            android:layout_height="match_parent"/>
    
        <include
            android:id="@+id/toolbar"
            layout="@layout/toolbar"
            android:background="@color/md_dark_appbar"
            />
    </RelativeLayout>   
    
  2. 在 onCreate() 中的某处调用 toolbar.bringToFront()(如果您将此布局用于活动)。例子:

    @Override
    protected void onCreate(Bundle savedInstanceState) {
    
        setContentView(R.layout.layout_activity);// your resource name here
    
        View toolbar = findViewById(R.id.toolbar);
        toolbar.bringToFront();
    
        ....
    }
    
  3. 为 onCreate 中某处的工具栏视图的父级调用 ViewGroup::bringChildToFront。如果您在活动的 onCreate 中使用此布局,则代码应为:

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        setContentView(R.layout.layout_activity);// your resource name here
        RelativeLayout root = findViewById(R.id.PhotoPager_Layout);
        View toolbar = findViewById(R.id.toolbar);
        root.bringChildToFront(toolbar);
    
        ....
    }
    
于 2016-06-23T19:24:37.797 回答
0

对我来说,问题来自 ScrollView 布局,它是 ViewPager 的父级,当我删除 ScrollView 时,它起作用了。接受的答案中的选项并没有帮助我解决它

于 2018-10-09T10:51:28.270 回答
0

您最好提供 HackyViewPager 自定义视图的代码,以更好地理解您的问题。但我的猜测是,在那里你不会考虑不同的操作系统版本,计算底部的软按钮(HOME、BACK、MENU)。从 Lollipop 开始,软按钮是屏幕的一部分,而在早期版本中,它们不在屏幕上。希望这可以帮助。

于 2016-06-23T19:23:20.620 回答