CardView和模糊背景

本章目錄

  • Part One:CardView
  • Part Two:模糊背景

Part One:CardView

從Android5.0開始灯萍,Google正式推出了Material Design的設(shè)計理念示启,統(tǒng)一了它旗下所有產(chǎn)品的設(shè)計風格。簡單來說乔妈,就是把界面想象成由卡片層疊在一起組成,三要素就是紙汗侵,墨和空間匾南,基本概念可以看我之前做過的一篇課件初識Material Design。圍繞這套理念馏锡,Android也推出了一大批新控件,CardView就是其中之一伟端。
顧名思義杯道,CardView可以翻譯為卡片視圖,本質(zhì)上可以看成一個FrameLayout,用來給控件設(shè)置圓角和陰影党巾,可以大大減少我們給控件設(shè)置shape的操作萎庭。
CardView的主要有三個屬性:

  • cardBackgroundColor:設(shè)置背景顏色
  • cardCornerRadius:設(shè)置圓角弧度
  • cardElevation:陰影大小

需要注意的是,引用這三個屬性必須使用自定義命名空間齿拂,可以將其理解為官方出品的自定義View驳规。CardView還有一些通用屬性,以及為了提高兼容性而設(shè)置的屬性署海,這里就不再細說了吗购,一般用不到。
下面將其引入我們的案例

  1. 導包
    在app的build.gradle中添加依賴
    implementation 'com.android.support:cardview-v7:26.1.0'
  1. 給RecyclerView的條目配置CardView
    在item布局中砸狞,將先前的布局用CardView包裹捻勉,并添加自定義命名空間
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView 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:layout_margin="24dp"
    app:cardCornerRadius="10dp"
    app:cardElevation="8dp">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <ImageView
            android:id="@+id/imageView_item_photo"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_alignParentStart="true"
            android:layout_alignParentTop="true"
            android:contentDescription="@null" />

        <TextView
            android:id="@+id/textView_item_photo"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_marginBottom="48dp"
            android:gravity="center_horizontal"
            android:textColor="@android:color/white" />
    </RelativeLayout>

</android.support.v7.widget.CardView>

最終的效果為:


CardView.png

Part Two:模糊背景

使用卡片式布局后,圖片四周會有一個白色的留白刀森,如果想讓顏色更豐富一些踱启,可以設(shè)定一個背景顏色。但是研底,背景顏色不能太亮埠偿,否則會搶到主照片的視野,所以就要做一些模糊化處理榜晦。
模糊化的處理可以調(diào)用網(wǎng)上BitmapUtils工具類來處理冠蒋,所以用法比較簡答。

  1. 創(chuàng)建BitmapUtils工具類
    去百度搜索BitmapUtils工具類芽隆,里面會包含很多功能浊服,暫時我們用不到,只需要其中的blurBitmap方法而已胚吁。
package com.terana.mycustomview.tools;

import android.annotation.SuppressLint;
import android.annotation.TargetApi;
import android.content.Context;
import android.graphics.Bitmap;
import android.os.Build;
import android.renderscript.Allocation;
import android.renderscript.Element;
import android.renderscript.RenderScript;
import android.renderscript.ScriptIntrinsicBlur;

public class BitmapUtils {
    /**
     * TODO<圖片模糊化處理>
     *
     * @param bitmap  源圖片
     * @param radius  The radius of the blur Supported range 0 < radius <= 25
     * @param context 上下文
     * @return Bitmap
     * @throw
     */
    @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
    @SuppressLint("NewApi")
    public static Bitmap blurBitmap(Bitmap bitmap, float radius, Context context) {
        // Let's create an empty bitmap with the same size of the bitmap we want
        // to blur
        Bitmap outBitmap = Bitmap.createBitmap(bitmap.getWidth(),
                bitmap.getHeight(), Bitmap.Config.ARGB_8888);
        // Instantiate a new Renderscript
        RenderScript rs = RenderScript.create(context);
        // Create an Intrinsic Blur Script using the Renderscript
        ScriptIntrinsicBlur blurScript = ScriptIntrinsicBlur.create(rs,
                Element.U8_4(rs));
        // Create the Allocations (in/out) with the Renderscript and the in/out
        // bitmaps
        Allocation allIn = Allocation.createFromBitmap(rs, bitmap);
        Allocation allOut = Allocation.createFromBitmap(rs, outBitmap);
        // Set the radius of the blur
        if (radius > 25) {
            radius = 25.0f;
        } else if (radius <= 0) {
            radius = 1.0f;
        }
        blurScript.setRadius(radius);
        // Perform the Renderscript
        blurScript.setInput(allIn);
        blurScript.forEach(allOut);
        // Copy the final bitmap created by the out Allocation to the outBitmap
        allOut.copyTo(outBitmap);
        // recycle the original bitmap
        bitmap.recycle();
        bitmap = null;
        // After finishing everything, we destroy the Renderscript.
        rs.destroy();
        return outBitmap;

    }

}
  1. 添加模糊化背景
    本來想用ImageSwitcher動態(tài)獲取每一個圖片牙躺,然后當做背景,但是發(fā)現(xiàn)圖片內(nèi)容不一腕扶,效果一般般孽拷,還是使用固定背景了。
    獲取容器對象半抱,然后生成一個Bitmap位圖脓恕,調(diào)用工具類將其模糊化,最后生成一個BitmapDrawable對象放入到背景中窿侈,模糊度可自行調(diào)節(jié)炼幔。
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        removeStatusBar();
        setContentView(R.layout.activity_gallery);
        initViews();
        initRecyclerView();
    }

    private void initViews() {
        RelativeLayout container = findViewById(R.id.relativeLayout_gallery);
        Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.itembackground);
        bitmap = BitmapUtils.blurBitmap(bitmap, 25, this);
        container.setBackground(new BitmapDrawable(getResources(), bitmap));
    }
  1. 微調(diào)
    先前的字體是內(nèi)嵌到圖片上的,由于圖片的顏色不受控制史简,導致字體的顏色也不好控制乃秀。這里可以把TextView的位置挪到圖片的下方,然后讓背景透明,直接使用寫到模糊背景上跺讯。
<?xml version="1.0" encoding="utf-8"?>


<RelativeLayout 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:layout_marginStart="24dp"
    android:layout_marginEnd="24dp"
    android:layout_marginTop="24dp"
    android:layout_marginBottom="40dp">

    <android.support.v7.widget.CardView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:cardCornerRadius="10dp"
        app:cardElevation="8dp"
        android:layout_above="@+id/textView_item_photo"
        android:layout_alignParentStart="true"
        android:layout_alignParentTop="true"
        android:layout_marginBottom="8dp">

        <ImageView
            android:id="@+id/imageView_item_photo"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:contentDescription="@null" />
    </android.support.v7.widget.CardView>

    <TextView
        android:id="@+id/textView_item_photo"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:background="#00000000"
        android:gravity="center_horizontal"
        android:textColor="@android:color/white" />
</RelativeLayout>

最后的結(jié)果為


模糊背景.png
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末枢贿,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子刀脏,更是在濱河造成了極大的恐慌局荚,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,454評論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件愈污,死亡現(xiàn)場離奇詭異耀态,居然都是意外死亡,警方通過查閱死者的電腦和手機钙畔,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,553評論 3 385
  • 文/潘曉璐 我一進店門茫陆,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人擎析,你說我怎么就攤上這事簿盅。” “怎么了揍魂?”我有些...
    開封第一講書人閱讀 157,921評論 0 348
  • 文/不壞的土叔 我叫張陵桨醋,是天一觀的道長。 經(jīng)常有香客問我现斋,道長喜最,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,648評論 1 284
  • 正文 為了忘掉前任庄蹋,我火速辦了婚禮瞬内,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘限书。我一直安慰自己虫蝶,他們只是感情好,可當我...
    茶點故事閱讀 65,770評論 6 386
  • 文/花漫 我一把揭開白布倦西。 她就那樣靜靜地躺著能真,像睡著了一般。 火紅的嫁衣襯著肌膚如雪扰柠。 梳的紋絲不亂的頭發(fā)上粉铐,一...
    開封第一講書人閱讀 49,950評論 1 291
  • 那天,我揣著相機與錄音卤档,去河邊找鬼蝙泼。 笑死,一個胖子當著我的面吹牛劝枣,可吹牛的內(nèi)容都是我干的踱承。 我是一名探鬼主播倡缠,決...
    沈念sama閱讀 39,090評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼茎活!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起琢唾,我...
    開封第一講書人閱讀 37,817評論 0 268
  • 序言:老撾萬榮一對情侶失蹤载荔,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后采桃,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體懒熙,經(jīng)...
    沈念sama閱讀 44,275評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,592評論 2 327
  • 正文 我和宋清朗相戀三年普办,在試婚紗的時候發(fā)現(xiàn)自己被綠了工扎。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,724評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡衔蹲,死狀恐怖肢娘,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情舆驶,我是刑警寧澤橱健,帶...
    沈念sama閱讀 34,409評論 4 333
  • 正文 年R本政府宣布,位于F島的核電站沙廉,受9級特大地震影響拘荡,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜撬陵,卻給世界環(huán)境...
    茶點故事閱讀 40,052評論 3 316
  • 文/蒙蒙 一珊皿、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧巨税,春花似錦蟋定、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,815評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至果元,卻和暖如春促王,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背而晒。 一陣腳步聲響...
    開封第一講書人閱讀 32,043評論 1 266
  • 我被黑心中介騙來泰國打工蝇狼, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人倡怎。 一個月前我還...
    沈念sama閱讀 46,503評論 2 361
  • 正文 我出身青樓迅耘,卻偏偏與公主長得像贱枣,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子颤专,可洞房花燭夜當晚...
    茶點故事閱讀 43,627評論 2 350

推薦閱讀更多精彩內(nèi)容