我使用“材质”滑动选项卡显示滑动3不同的片段布局。 这是滑动选项卡的xml布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">
<include
android:id="@+id/tool_bar"
layout="@layout/tool_bar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
/>
<com.android4devs.slidingtab.SlidingTabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="2dp"/>
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:layout_weight="1"
></android.support.v4.view.ViewPager>
</LinearLayout>
现在,滑动的xml布局片段有一个固定在布局底部的按钮,所以当我滑动到这个片段时,片段的布局被剪切,请参见图像:
有哪些方法可以将布局片段修复为ViewPager,或者使用滚动条视图滚动它?
由于
答案 0 :(得分:0)
在您的第二个Fragment
中,您可以使用
scrollView.post(new Runnable() {
@Override
public void run() {
scrollView.fullScroll(View.FOCUS_DOWN);
}
});
要将ScrollView
滚动到底部,以便Button
完全可见。