我是Android的新手,我正在尝试在Tabbed布局中使用ScrollView。当我将片段布局包含在选项卡式视图中时,向下滚动时不会显示最后一个元素。我尝试将“LinearLayout”的高度设置为“wrap_content”但仍然无法正常工作。
理想情况下,我只需要一个按钮,其他按钮仅用于测试目的。
如果我将其添加到“活动”而不是“标签”视图,则相同的布局正常工作。
这是包含ScrollView
的布局<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".MainActivity">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="@dimen/appbar_padding_top"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/AppTheme.PopupOverlay">
</android.support.v7.widget.Toolbar>
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
带有问题的标签活动
{{1}}
以下是scenarois
的屏幕截图我可以通过减少EditTexts的边距或大小来解决这个问题,但我很想知道我哪里出错了。可以请任何人帮我解决这个问题。
我正在使用最新版本的Android Studio
minSdkVersion - 18
targetSdkVersion - 23
谢谢,
卡皮尔
答案 0 :(得分:3)
将此行添加到ScrollView
:
app:layout_behavior="@string/appbar_scrolling_view_behavior"
同时从 android.support.v4.view.ViewPager 中删除相同的属性 ViewPager应该是
<android.support.v4.view.ViewPager
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="wrap_content" />