使用once_flag
时,NestedScrollView
停止工作的滚动行为存在问题,请帮助它看起来仅基于 CollapsingToolbar
的内容滚动,但无法滚动内容appbar_scrolling_view_behavior
。一些奇怪的行为是点击一些NestedScrollView
,在片段布局中和解除虚拟键盘后,滚动工作应该是!!
EditText
// Sdk and tools
minSdkVersion = 16
targetSdkVersion = 26
compileSdkVersion = 26
buildToolsVersion = '27.0.3'
// App dependencies
supportLibraryVersion = '27.1.0'
constraintLayout = '1.1.0-beta5'
implementation "com.android.support:design:$supportLibraryVersion"
implementation "com.android.support:support-v13:$supportLibraryVersion"
implementation "com.android.support:cardview-v7:$supportLibraryVersion"
implementation "com.android.support:gridlayout-v7:$supportLibraryVersion"
implementation "com.android.support.constraint:constraint-layout:$constraintLayout"
implementation 'com.android.support:multidex:1.0.3'
只是一个重复的小部件,用于测试滚动内容。
class UserProfileEditActivity : DaggerAppCompatActivity() {
@Inject
lateinit var appRepo: AppRepository
companion object {
fun createIntent(context: Context): Intent = Intent(context, UserProfileEditActivity::class.java)
.apply { flags = Intent.FLAG_ACTIVITY_CLEAR_TOP or Intent.FLAG_ACTIVITY_SINGLE_TOP }
}
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_user_profile_edit)
supportFragmentManager.findFragmentById(R.id.contentContainer)
?: supportFragmentManager.beginTransaction()
.add(R.id.contentContainer, UserProfileEditFragment())
.commit()
}
}
<?xml version="1.0" encoding="utf-8"?>
<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:fitsSystemWindows="true">
<FrameLayout
android:id="@+id/contentContainer"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<android.support.design.widget.AppBarLayout
android:id="@+id/appBarLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:theme="@style/ThemeOverlay.AppCompat.Dark"
app:elevation="0dp">
<android.support.design.widget.CollapsingToolbarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:contentScrim="?attr/colorPrimary"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<ImageView
android:id="@+id/imgPeopleCover"
android:layout_width="match_parent"
android:layout_height="150dp"
android:scaleType="centerCrop"
android:src="@drawable/bg_cover_test"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light">
<TextView
android:id="@+id/tvToolbarTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="40dp"
android:gravity="center_vertical"
android:text="ลิลลี่ ฮิกซ์"
android:textColor="@android:color/white"
android:textSize="20sp" />
</android.support.v7.widget.Toolbar>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
</android.support.design.widget.CoordinatorLayout>
答案 0 :(得分:0)
尝试将 app:layout_behavior="@string/appbar_scrolling_view_behavior"
添加到NestedScrollView
使用此
<android.support.v4.widget.NestedScrollView 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"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:fillViewport="true">
而不是这个
<android.support.v4.widget.NestedScrollView 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:fillViewport="true">
编辑从app:layout_behavior="@string/appbar_scrolling_view_behavior"
FrameLayout
<FrameLayout
android:id="@+id/contentContainer"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
编辑2
使用
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:id="@+id/htab_maincontent"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:id="@+id/htab_appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#2fff00"
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/htab_collapse_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginEnd="64dp"
app:expandedTitleMarginStart="48dp"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:titleEnabled="false">
<android.support.v7.widget.Toolbar
android:id="@+id/htab_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@android:color/transparent"
app:contentInsetStart="0dp"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
<ImageView
android:id="@+id/htab_header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/ic_launcher_background"
app:layout_collapseMode="parallax" />
</android.support.design.widget.CollapsingToolbarLayout>
<android.support.design.widget.TabLayout
android:id="@+id/htab_tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
app:layout_anchor="@+id/MyAppbar"
app:layout_anchorGravity="bottom"
app:tabGravity="fill"
app:tabIndicatorColor="#F21757"
app:tabMode="scrollable"
app:tabSelectedTextColor="#F21757"
app:tabTextColor="@android:color/white" />
</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>
片段布局
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView 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"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:fillViewport="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:padding="10dp"
android:text="NIELSH"
android:layout_height="wrap_content" />
</LinearLayout>
</android.support.v4.widget.NestedScrollView>