我想将NestedScrollView与CollapsingToolbarLayout一起使用。在NestedScrollView中,内容确实很长。不幸的是,我无法滚动到最后。一些长期内容被削减。当我转动屏幕,滚动工作正常并且所有内容都可见时,有什么奇怪的。
{{1}}
编辑:我注意到切割内容的高度与工具栏高度相同。
答案 0 :(得分:6)
从here回答。将paddingBottom添加到NestedScrollView为我解决了这个问题:
$apiUsername = <my api username>;
$apiPassword = <my api password>;
$token = <token returned from GetAccessToken response>;
$secret = <tokenSecret from GetAccessToken response>;
$time = time();
$endpoint = 'https://svcs.sandbox.paypal.com/Permissions/GetBasicPersonalData';
$auth = new \OAuth($apiUsername, $apiPassword);
$auth->setToken($token, $secret);
$auth->setTimestamp($time);
$signature = $auth->generateSignature('POST', $endpoint);
答案 1 :(得分:5)
我也遇到了类似的问题,当键盘打开时,NestedScrollView不会滚动到结尾。
在NestedScrollView之后放置AppBarLayout为我做了诀窍。如果它适合你,请告诉我。
答案 2 :(得分:4)
我有同样的问题。此错误的原因之一是未设置SupportActionBar
final Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
(我没有这样做,因为我只需要工具栏以便折叠工具栏按预期工作,我认为setSupportActionBar并不重要)
另一个是活动内部的使用工作正在进行,但片段无法正常工作
答案 3 :(得分:2)
提问后已经有一段时间了。但也许像在this answer中一样在CollapsingToolbarLayout中设置'\r'
属性也可以帮助某人。
答案 4 :(得分:2)
由于固定了工具栏(带有CollapsingToolbar)。 Nestedscrollview无法通过屏幕调整底视图。
如果在setSupportActionBar上设置工具栏。 NestedScrollView将适合屏幕。
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
答案 5 :(得分:1)
对我来说,这是导致我的CollapsingToolbarLayout中的“ exitUntilCollapsed”行的原因:
app:layout_scrollFlags="scroll|exitUntilCollapsed">
与“ scroll”一起使用时会引起问题。 我也不能使用marginBottom,因为我有一个即时翻译选项,可以用新的内容刷新TextViews,而当它发生时,它神秘地决定进一步滚动,最终导致底部的空白区域看上去非常糟糕。 / p>
我改用“ enterAlwaysCollapsed”解决了该问题,并将工具栏移到折叠上方的最顶部。这不是我想要的,但是到目前为止我找不到解决方案。
答案 6 :(得分:0)
使用app:layout_behavior =“ @ string / appbar_scrolling_view_behavior”属性和嵌套滚动视图,它将起作用
<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.support.design.widget.AppBarLayout
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="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<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/ThemeOverlay.AppCompat.Light"/>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:id="@+id/task_recycler_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fillViewport="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>