我现在已经处理了一段时间,在collapsingtoolbarlayout中更改了标题背景的颜色,但仅在展开时才更改。我想要的是透明的稀松布背景或颜色叠加(如文档所述):
我想要这种行为(或者也可以使用透明背景的保护屏幕),事情是我在这篇文章中找到完全相同的问题:
Android CollapsingToolbarLayout Title background
我已将此解决方案应用于我的Android项目,但它没有工作,在imageView未显示之后设置了视图(不知道为什么)但是我还没有发现(不是在谷歌和文档中)是如何设法使用颜色叠加。
我想要的是,当工具栏展开以显示标题背后的颜色背景时,折叠时隐藏它并仅显示标题
这就是我现在所拥有的:
如您所见,标题非常难以阅读,并且取决于后面的图像视图,因此我需要找到适合所有可能图像的解决方案。
这是我的代码:
EstablecimientosDetail文件:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Intent i = getIntent();
establecimiento = (HashMap<String, String>) i.getBundleExtra(TAG_ESTABLECIMIENTOS).getSerializable("Hashmap");
setContentView(R.layout.activity_establecimientos_detalle);
final Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar_establecimiento_detalle);
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
CollapsingToolbarLayout toolBarLayout = (CollapsingToolbarLayout) findViewById(R.id.toolbar_layout);
toolBarLayout.setTitle(establecimiento.get(TAG_NOMBRE));
toolBarLayout.setContentScrimColor(R.color.black_semi_transparent);
// toolBarLayout.setCollapsedTitleTextColor(R.color.abc_primary_text_material_light);
FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Snackbar.make(view, "Llamando...", Snackbar.LENGTH_LONG)
.setAction("Action", null).show();
}
});
loadImage();
}
private void loadImage() {
final ImageView imageView = (ImageView) findViewById(R.id.backdrop);
Log.e("imagen actividad", establecimiento.get(TAG_IMAGEN_RECETA));
Picasso.with(this).load(establecimiento.get(TAG_IMAGEN_RECETA)).error(R.drawable.logo_ternera_negro).into(imageView);
}
相应的布局文件:
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="@dimen/app_bar_height"
android:fitsSystemWindows="true"
android:theme="@style/Theme.TerneraGallega.AppBarOverlay">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/toolbar_layout"
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">
<ImageView
android:id="@+id/backdrop"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:scaleType="centerCrop"
app:layout_collapseMode="parallax" />
<!--<View-->
<!--android:layout_width="match_parent"-->
<!--android:layout_height="?attr/actionBarSize"-->
<!--android:background="#000"-->
<!--android:layout_gravity="bottom"/>-->
<!--<View-->
<!--android:layout_width="match_parent"-->
<!--android:layout_height="@dimen/sheet_text_scrim_height_top"-->
<!--android:background="@drawable/scrim_top"-->
<!--app:layout_collapseMode="pin" />-->
<View
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_gravity="bottom"
android:background="@drawable/scrim_bottom" />
<!--<include layout="@layout/toolbar" />-->
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar_establecimiento_detalle"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:theme="@style/EstablecimientosDetalleTheme" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_establecimientos_detalle" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/fab_margin"
android:src="@drawable/ic_action_call"
app:borderWidth="0dp"
app:layout_anchor="@id/app_bar"
app:layout_anchorGravity="bottom|end" />
还有样式和可绘制文件:
scrim_botton.xml
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:angle="90"
android:startColor="@color/translucent_scrim_bottom"
android:centerColor="@color/translucent_scrim_bottom_center"
android:endColor="@android:color/transparent"/>
</shape>
styles.xml
<style name="EstablecimientosDetalleTheme" parent="Theme.AppCompat.NoActionBar">
<item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
<item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
<item name="actionMenuTextColor">@color/abc_primary_text_material_light</item>
<item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
</style>
有谁知道如何实现这种行为?
提前致谢
答案 0 :(得分:1)
最后我找到了解决方案。对于每个人如何使用CollapsingToolbarLayout和AppBarLayout处理scrim视图,您必须设置最小的appcompat支持库,支持设置为23 +
此问题中提供的答案有效stackoverflow
但请注意设置build.grade
compile 'com.android.support:design:23.1.0'
compile 'com.android.support:appcompat-v7:23.1.0'
与
一起android {
compileSdkVersion 23
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "com.irixgalicia.terneragallega"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}