我正在关注 Cheesesquare 示例项目以了解新的设计材料库。
我想知道是否有一种方法可以使用带有 ImageView、标题和副标题的自定义视图(如 Telegram),而不是 CollapsingToolbarLayout 小部件提供的简单标题。
谢谢。
我正在关注 Cheesesquare 示例项目以了解新的设计材料库。
我想知道是否有一种方法可以使用带有 ImageView、标题和副标题的自定义视图(如 Telegram),而不是 CollapsingToolbarLayout 小部件提供的简单标题。
谢谢。
我遇到了同样的问题,花了很多时间试图找到解决方案。我的解决方案是在其中添加折叠视图(ImageView 和 TextView)CollapsingToolbarLayout
,然后在代码中处理转换。这种方式比从 CollapsingToolbarLayout 扩展更灵活、更简单。
首先,您需要在CollapsingToolbarLayout
具有视差属性的内部添加视图:
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop:"80dp"
android:src="@drawable/icon"
app:layout_collapseMode="parallax"
app:layout_collapseParallaxMultiplier="0.8"/> //set vertical transition here
然后在 的帮助下设置视图的缩放OnOffsetchangeListner
:
private static final float SCALE_MINIMUM=0.5f;
appBarLayout.setOnWorkingOffsetChange(new ControllableAppBarLayout.OnWorkingOffsetChange() {
@Override
public void onOffsetChange(int offSet, float collapseDistance) {
imageView.setScaleX(1 + (collapseDistance * SCALE_MINIMUM));
imageView.setScaleY(1 + (collapseDistance * SCALE_MINIMUM));
textView.setScaleX(1 + (collapseDistance * SCALE_MINIMUM));
textView.setScaleY(1 + (collapseDistance * SCALE_MINIMUM));
// You can also setTransitionY/X, setAlpha, setColor etc.
}
});
不知何故,默认值offsetChangedListener
对我来说不能正常工作(您可能仍然应该先使用默认侦听器尝试它),所以我使用了ControllableAppBarLayout
来自https://gist.github.com/blipinsk/3f8fb37209de6d3eea99并添加了以下内容:
private OnWorkingOffsetChange onWorkingOffsetChange;
@Override
public void onOffsetChanged(AppBarLayout appBarLayout, int i) {
if (!isInEditMode()) {
onWorkingOffsetChange.onOffsetChange(i, (float) i / appBarLayout.getTotalScrollRange());
}
}
public void setOnWorkingOffsetChange(OnWorkingOffsetChange listener) {
this.onWorkingOffsetChange = listener;
}
public interface OnWorkingOffsetChange {
void onOffsetChange(int offSet, float collapseDistance);
}
唯一的问题是,您需要为
app:contentScrim="#00000000"
您的 设置(透明)CollapsingToolbarLayout
,因此当工具栏折叠时您的视图仍然可见。如果你真的需要折叠背景效果,我相信你可以通过在OffsetChangeListener
. ;)
从小部件本身来看,似乎没有办法直接启用它,就像可以将自定义视图添加到工具栏一样。
但是,您可以尝试做的是打开源代码CollapsingToolbarLayout.class
并查看如何CollapsingTextHelper.class
使用它来设置标题。您可以尝试通过从CollapsingToolbarLayout
.
如果您之前没有创建自定义组件/视图,这些链接可以帮助您创建它们: 自定义视图、自定义组件
我还没有尝试过,但实际上我正在考虑尝试实现与您正在寻找的类似解决方案。到目前为止,我将遵循的步骤:
attrs.xml
MyCollapsingToolbarLayout
通过扩展原来的来创建你自己的。super
构造函数,以便原始组件保持不变。subtitleTextHelper
添加一个新的来创建一个。CollapsingTextHelper
onDraw
以实际绘制您的字幕。CollapingsToolbarLayout
使用您的字幕属性(默认样式等,可能是固定的字幕文本)更新包含您的布局。Activity
包含您的CollapsingToolbar
. (转换CollapsingToolbarlayout
为MyCollapingsToolbarLayout
,设置字幕,额外的自定义设置等)。现在要去看看。
稍微编辑克里斯托弗的答案,以展示如何让自定义视图在折叠时不消失:
首先,您需要在CollapsingToolbarLayout
具有视差属性的内部添加视图:
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop:"80dp"
android:src="@drawable/icon"
app:layout_collapseMode="parallax"
app:layout_collapseParallaxMultiplier="0.8"/> //set vertical transition here
而是以编程方式添加自定义视图,它不会在折叠时消失。例如,这是一个包含标题和副标题的视图:
final FrameLayout frameLayout = new FrameLayout(mActivity);
FrameLayout.LayoutParams frameLayoutParams = new FrameLayout.LayoutParams(FrameLayout.LayoutParams.MATCH_PARENT,
FrameLayout.LayoutParams.MATCH_PARENT);
frameLayout.setLayoutParams(frameLayoutParams);
// Create new LinearLayout
final LinearLayout linearLayout = new LinearLayout(mActivity);
frameLayoutParams =new FrameLayout.LayoutParams(FrameLayout.LayoutParams.MATCH_PARENT, dpToPixels(78));
frameLayoutParams.gravity = Gravity.BOTTOM;
linearLayout.setLayoutParams(frameLayoutParams);
linearLayout.setOrientation(LinearLayout.VERTICAL);
// Add textviews
final TextView textView1 = new TextView(mActivity);
LinearLayout.LayoutParams linearLayoutParams =new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT,
LinearLayout.LayoutParams.WRAP_CONTENT);
frameLayoutParams.gravity = Gravity.BOTTOM;
textView1.setLayoutParams(linearLayoutParams);
textView1.setText("Title");
textView1.setTextColor(ContextCompat.getColor(mActivity, R.color.colorWhite));
textView1.setTextSize(TypedValue.COMPLEX_UNIT_SP, 40);
linearLayout.addView(textView1);
final TextView textView2 = new TextView(mActivity);
linearLayoutParams = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT,
LinearLayout.LayoutParams.WRAP_CONTENT);
textView2.setLayoutParams(linearLayoutParams);
textView2.setText("Subtitle");
textView2.setTextColor(ContextCompat.getColor(mActivity, R.color.colorWhite));
textView2.setTextSize(TypedValue.COMPLEX_UNIT_SP, 20);
linearLayout.addView(textView2);
frameLayout.addView(linearLayout);
collapsingToolbar.addView(frameLayout);
final float SCALE_MIN=0.4f;
AppBarLayout appBarLayout = (AppBarLayout) mActivity.findViewById(R.id.appBarLayout);
appBarLayout.addOnOffsetChangedListener(new AppBarLayout.OnOffsetChangedListener() {
@Override
public void onOffsetChanged(AppBarLayout appBarLayout, int offSet) {
float collapsedRatio = (float) offSet / appBarLayout.getTotalScrollRange();
linearLayout.setScaleX(1 + (collapsedRatio * SCALE_MIN));
linearLayout.setScaleY(1 + (collapsedRatio * SCALE_MIN));
FrameLayout.LayoutParams frameLayoutParams =new FrameLayout.LayoutParams(FrameLayout.LayoutParams.MATCH_PARENT, dpToPixels(78));
frameLayoutParams.gravity = Gravity.BOTTOM;
frameLayoutParams.setMargins(Math.round(dpToPixels(48) * (1+collapsedRatio)), 0, 0, Math.round(dpToPixels(15) * collapsedRatio));
linearLayout.setLayoutParams(frameLayoutParams);
// You can also setTransitionY/X, setAlpha, setColor etc.
}
});
/////
float lastCollapsedRatio = -2;
////
private int dpToPixels(int padding_in_dp){
final float scale = getResources().getDisplayMetrics().density;
int padding_in_px = (int) (padding_in_dp * scale + 0.5f);
return padding_in_px;
}