一切正常,除了我试图实现的功能尚未完成之外:我希望能够扩展或缩小ImageView标题,就像在Lollipop上的“联系人”屏幕中一样用户可以扩展或缩小联系人的图像。
现在活动开始后,图片的大小就是AppBar
的大小(因为我以编程方式设置它的大小为0)。 / p>
我想开始使用image view / appbar
(无论你在看什么)最小化,即不仅可以向下滚动(如教程中所示,因此图像大小就在它的位置#39;开头的全尺寸然后收缩)但是为了能够向上滚动布局以便显示更多的图像标题。
现在它是不可能的,因为活动以image / appbar
的全尺寸开始,所以我不能再扩展它们了。
mRecyclerView = (RecyclerView) findViewById(R.id.activity_profile_bottom_recyclerview);
mRecyclerView.setHasFixedSize(true);
// use a linear layout manager
mLayoutManager = new LinearLayoutManager(this);
mRecyclerView.setLayoutManager(mLayoutManager);
// specify an adapter (see also next example)
if(mAdapter == null){
mAdapter = new ProfileAdapter(this, user, inEditMode);
mRecyclerView.setAdapter(mAdapter);
}
mRecyclerView.scrollToPosition(mAdapter.getItemCount() - 1);
适配器长度为4项,甚至不需要半屏。 这是我的xml布局:
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/activity_profile"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="0dp" // set programatically
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginBottom="32dp"
app:expandedTitleMarginEnd="64dp"
app:expandedTitleMarginStart="48dp"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<ImageView
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/header"
android:fitsSystemWindows="true"
android:scaleType="centerCrop"
app:layout_collapseMode="parallax" />
<android.support.v7.widget.Toolbar
android:id="@+id/anim_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/activity_profile_bottom_recyclerview"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>
<include
layout="@layout/navigation_view"/>
</android.support.v4.widget.DrawerLayout>
为什么scrollToPosition
不起作用?也许因为我只有4个项目(这是适配器的项目计数会检索到的)?也试过scrollToPositionWithOffset
。
注意:如果我手动向上滚动,RecyclerView会上升,它只是不通过代码。
除了以编程方式滚动之外,我还开放了其他方法来实现我想要的目标。
答案 0 :(得分:0)
嗯尝试添加更多项目并使用以下代码:
recycleView.scrollTo(int x, int y)
或
recycleView.scrollTo(int x, int y)
或
recycleView.scrollToPosition(int position)
答案 1 :(得分:0)
对于滚动问题,您需要将Recycler视图放在ScrollView中。