Recently I am implementing a material design to my existing application. For this I am using the following library : http://android-developers.blogspot.com/2015/05/android-design-support-library.html to achieve the following effect : https://plus.google.com/+AndroidDevelopers/posts/XUDGFS9eYxg.
My layout code is like below:
<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">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="350dp"
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/event_image"
android:layout_width="fill_parent"
android:layout_height="350dp"
android:background="@color/white"
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.v4.widget.NestedScrollView
--------
</android.support.v4.widget.NestedScrollView>
<android.support.design.widget.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="30dp"
android:clickable="true"
android:src="@drawable/ic_action_share"
app:layout_anchor="@+id/appbar"
app:layout_anchorGravity="bottom|right|end" />
</android.support.design.widget.CoordinatorLayout>
I achieve the desired effect but I have a problem with the image and the Text. The text is white color and when it happens that I have an image that in most part of it consist of white color, the text label cannot be read.
Any suggestion how to solve it, without destroying the effect?
答案 0 :(得分:2)
感谢@m vai给我提示,我使用了另一种方法。我创建了一个function Get(Some,that,res){
return Some.find(function(err,that) {
if (!err) {
return res.send(that);
} else {
return res.send(500, err);
}
});
};
router.get('/pages', sessionCheck,function(req,res) {
Get(Page,pages,res);
});
,在里面我放了FrameLayout
和GradientView。然后我将所有动画属性传递给FrameLayout。最后它很简单。因此,代替ImageView
应该是以下代码:
ImageView
XML文件如下所示:
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_collapseMode="parallax"
android:fitsSystemWindows="true">
<RelativeLayout
android:id="@+id/title_layout"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/event_image"
android:layout_width="fill_parent"
android:layout_height="350dp"
android:background="@color/white"
android:scaleType="centerCrop"
/>
</RelativeLayout>
<View
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/actionbar_overlay" />
</FrameLayout>
答案 1 :(得分:1)
这也可以通过在文本上使用阴影来解决。
例如,将此示例样式应用于TextView,甚至白色图像上的白色文本也将完全可见。
<style name="ShadowTextStyle" parent="@android:style/TextAppearance">
<item name="android:textSize">35sp</item>
<item name="android:textStyle">bold</item>
<item name="android:textColor">@color/White</item>
<item name="android:layout_marginLeft">40dp</item>
<item name="android:layout_marginBottom">10dp</item>
<item name="android:shadowColor">@android:color/black</item>
<item name="android:shadowDx">0</item>
<item name="android:shadowDy">0</item>
<item name="android:shadowRadius">25</item>
</style>
结果:
答案 2 :(得分:0)
You could use the Palette library.
int myColor;
Bitmap b = ... //your image
Palette.Swatch swatch = Palette.from(b).generate().getVibrantSwatch();
if (swatch != null) {
myColor = swatch.getTitleTextColor();
}
With just a few lines it lets you analyze the image and extract the most appropriate text color, which will have a good contrast with the image behind.
Color can then be set on your CollapsingToolbarLayout.
CollapsingToolbarLayout ctl = (CollapsingToolbarLayout) findViewById(R.id.ctl);
ctl.setExpandedTitleColor(myColor);
答案 3 :(得分:0)
您也可以申请以下解决方案;
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_collapseMode="parallax"
android:fitsSystemWindows="true">
<RelativeLayout
android:id="@+id/title_layout"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/ivRestaurantImage"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/gradient"
android:scaleType="fitXY"
android:src="@drawable/second_img" />
</RelativeLayout>
<View
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/gradient" />
</FrameLayout>
gradient.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="90"
android:startColor="#00ffffff"
android:endColor="#aa000000"
/>
</shape>