嘿伙计我有一个协调器布局,里面有一些标签和一个显示我的偏好片段的viewpager。你可以看看这里:
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:theme="@style/TabStyle">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:minWidth="@dimen/abc_action_bar_stacked_max_height"
android:nestedScrollingEnabled="true">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="wrap_content"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabMode="fixed"
app:tabGravity="fill"
android:theme="@style/TabStyle"
app:tabIndicatorColor="@color/colorAccent"/>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>
当我的手机更改为横向方向时,我无法滚动到偏好设置屏幕的底部,它只会滚动一点,我仍然无法在底部看到我的editextfield(参见图片 - 我有640x480文本下的另一个editext字段。
我的偏好布局如下:
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
...
<PreferenceCategory android:title="Settings">
<EditTextPreference
android:defaultValue="picture1"
android:key="editTextPref"
android:summary="picture"
android:title="picture" />
</PreferenceCategory>
</PreferenceScreen>