欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android設(shè)置控件陰影的三種方法

 更新時間:2017年11月05日 11:52:29   作者:蛋蛋哇  
這篇文章主要為大家詳細(xì)介紹了Android設(shè)置控件陰影的三種方法,具有一定的參考價值,感興趣的小伙伴們可以參考一下

本文實例為大家分享了Android設(shè)置控件陰影的方法,供大家參考,具體內(nèi)容如下

第一種方式:elevation

View的大小位置都是通過x,y確定的,而現(xiàn)在有了z軸的概念,而這個z值就是View的高度(elevation),而高度決定了陰影(shadow)的大小。

View Elevation(視圖高度)

View的z值由兩部分組成,elevation和translationZ(它們都是Android L新引入的屬性)。
eleavation是靜態(tài)的成員,translationZ是用來做動畫。
Z = elevation + translationZ

在layout中使用* android:elevation*屬性去定義 
在代碼中使用 View.setElevation 方法去定義 
設(shè)置視圖的translation,可以使用View.setTranslationZ方法 
新的ViewPropertyAnimator.z和ViewPropertyAnimator.translationZ方法可以設(shè)置視圖的elevation值

我們通過設(shè)置elevation的值也會達(dá)到卡片陰影效果

第二種方式:CardView

今天有空學(xué)習(xí)了下CardView的使用,既然是使用,不凡使用一個實例操作一下

CardView是Android5.0的新控件,所以我們需要在dependencies中添加支持:
compile 'com.android.support:cardview-v7:26.0.0'

CardView是繼承FrameLayout的一個布局控件,從源碼可以看出CardView支持的屬性有:

card_view:cardElevation 陰影的大小
card_view:cardMaxElevation 陰影最大高度
card_view:cardBackgroundColor 卡片的背景色
card_view:cardCornerRadius 卡片的圓角大小
card_view:contentPadding 卡片內(nèi)容于邊距的間隔

      card_view:contentPaddingBottom
      card_view:contentPaddingTop
      card_view:contentPaddingLeft
      card_view:contentPaddingRight
      card_view:contentPaddingStart
      card_view:contentPaddingEnd

card_view:cardUseCompatPadding 設(shè)置內(nèi)邊距,V21+的版本和之前的版本仍舊具有一樣的計算方式
card_view:cardPreventConrerOverlap 在V20和之前的版本中添加內(nèi)邊距,這個屬性為了防止內(nèi)容和邊角的重疊

我們看一下今天要實現(xiàn)的效果圖:

有興趣的朋友可以嘗試使用ViewPager+CardView實現(xiàn)卡片畫廊的效果

其實CardView的使用相當(dāng)于加了一個布局使用,其CardView里面內(nèi)容的實現(xiàn),還是在布局中設(shè)計
銀行卡布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:background="#ffffff"
  android:padding="16dp">

  <android.support.v7.widget.CardView
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="180dp"
    app:cardBackgroundColor="#099A8C"
    app:cardCornerRadius="10dp"
    app:cardElevation="10dp"
    app:contentPadding="16dp">

    <LinearLayout
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:orientation="horizontal">

      <ImageView
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:background="@drawable/icon_01" />

      <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:orientation="vertical"
        android:padding="8dp">

        <TextView
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="中國農(nóng)業(yè)銀行"
          android:textColor="#ffffff"
          android:textSize="18sp" />

        <TextView
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="儲蓄卡"
          android:textColor="#ffffff"
          android:textSize="16sp" />
        <TextView
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:textColor="#ffffff"
          android:gravity="center_vertical"
          android:textSize="22sp"
          android:text="**** **** **** 1234"/>
      </LinearLayout>

      <ImageView
        android:layout_width="60dp"
        android:layout_height="15dp"
        android:background="@drawable/icon_02" />
    </LinearLayout>
  </android.support.v7.widget.CardView>

</RelativeLayout>

特別注意的是:使用CardView的屬性時,記得加上命名空間的聲明
xmlns:app="http://schemas.android.com/apk/res-auto

第三種方式:最強(qiáng)按鈕通過Color來進(jìn)行設(shè)置

自認(rèn)為這是按鈕最好看的效果,還自帶按下效果,設(shè)置也非常簡單,秒殺一切陰影效果,我們先來看下他的效果

未按下效果

按下效果

**其實這種效果非常簡單,就是定義了一個顏色。對就是一個顏色就可以達(dá)到這種效果
那這個顏色要怎么定義才能達(dá)到這種效果呢**

比如上圖的按鈕顏色是粉紅色,顏色代碼 #f692bf,我們只需要在前面加上#ff,最后這樣#ff692bf 就可以達(dá)到這種效果。

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • Android實現(xiàn)調(diào)用攝像頭拍照并存儲照片

    Android實現(xiàn)調(diào)用攝像頭拍照并存儲照片

    本文主要介紹了如何利用Android調(diào)用攝像頭拍照,并顯示拍照后的圖片到ImageView中,文中的示例代碼講解詳細(xì),感興趣的可以動手試一試
    2022-01-01
  • android Launcher3設(shè)置默認(rèn)桌面應(yīng)用

    android Launcher3設(shè)置默認(rèn)桌面應(yīng)用

    這篇文章主要為大家詳細(xì)介紹了android Launcher3設(shè)置默認(rèn)桌面應(yīng)用,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2019-07-07
  • Android ConstraintLayout約束布局使用詳解

    Android ConstraintLayout約束布局使用詳解

    ConstraintLayout 即約束布局,也是 Android Studio 的默認(rèn)布局,它可以減少布局的層級,改善布局性能。不夸張地說,它基本上可以實現(xiàn)任何你想要的布局效果,下面,咱們一起來瞧瞧吧
    2022-11-11
  • HandlerThread的使用場景和用法詳解

    HandlerThread的使用場景和用法詳解

    這篇文章主要介紹了HandlerThread的使用場景和用法詳解,HandlerThread是Android中的一個線程類,它是Thread的子類,并且內(nèi)部封裝了Looper和Handler,提供了更方便的消息處理和線程操作,需要的朋友可以參考下
    2023-07-07
  • Flutter倒計時/計時器的實現(xiàn)代碼

    Flutter倒計時/計時器的實現(xiàn)代碼

    這篇文章主要介紹了Flutter倒計時/計時器的實現(xiàn)代碼,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2019-03-03
  • Flutter生命周期超詳細(xì)講解

    Flutter生命周期超詳細(xì)講解

    這篇文章主要為大家介紹了Flutter生命周期和App生命周期示例解析,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2023-01-01
  • Android App中實現(xiàn)簡單的刮刮卡抽獎效果的實例詳解

    Android App中實現(xiàn)簡單的刮刮卡抽獎效果的實例詳解

    這篇文章主要介紹了Android App中實現(xiàn)簡單的刮刮卡抽獎效果的實例詳解,文中主要借助Bitmap的canvas.drawPath的api來實現(xiàn),需要的朋友可以參考下
    2016-03-03
  • Android實現(xiàn)監(jiān)聽音量的變化

    Android實現(xiàn)監(jiān)聽音量的變化

    這篇文章主要為大家詳細(xì)介紹了Android實現(xiàn)監(jiān)聽音量的變化,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2021-05-05
  • Android編程實現(xiàn)Home鍵的屏蔽,捕獲與修改方法

    Android編程實現(xiàn)Home鍵的屏蔽,捕獲與修改方法

    這篇文章主要介紹了Android編程實現(xiàn)Home鍵的屏蔽,捕獲與修改方法,實例分析了使用onAttachedToWindow捕獲Home鍵的相關(guān)技巧,需要的朋友可以參考下
    2016-06-06
  • Kotlin中常見的符號詳解

    Kotlin中常見的符號詳解

    這篇文章主要介紹了Kotlin中常見的符號詳解,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2020-03-03

最新評論