이 Activity
은 전체 화면에서 실행됩니다. Kitkat
에 표고가 없기 때문에 ViewPager
은 Toolbar
위로 이동합니다. 여기 뒤에있는 툴바 ViewPager kitkat
<?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>
이는 모습입니다 :
나는이 문제를 해결할 수있는 방법에 대한 조언을?
모든 솔루션이 작동합니다. 감사! – dnld