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

Android控件CardView實(shí)現(xiàn)卡片效果

 更新時(shí)間:2020年02月04日 10:36:35   作者:cf8833  
這篇文章主要為大家詳細(xì)介紹了Android控件CardView實(shí)現(xiàn)卡片效果,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

這是android新推出的一個(gè),讓卡片帶立體感的一個(gè)控件,就是一個(gè)卡牌,有點(diǎn)類似于布局那種的東西,里面可以添加控件內(nèi)容

先看看運(yùn)行的效果圖:

1.添加依賴

implementation 'com.android.support:cardview-v7:25.3.1'

2.主界面設(shè)置一些卡片的屬性:

package com.example.admin.ztest;
 
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.CardView;
/*
app:cardBackgroundColor這是設(shè)置背景顏色 
app:cardCornerRadius這是設(shè)置圓角大小 
app:cardElevation這是設(shè)置z軸的陰影 
app:cardMaxElevation這是設(shè)置z軸的最大高度值 
app:cardUseCompatPadding是否使用CompatPadding 
app:cardPreventCornerOverlap是否使用PreventCornerOverlap 
app:contentPadding 設(shè)置內(nèi)容的padding 
app:contentPaddingLeft 設(shè)置內(nèi)容的左padding 
app:contentPaddingTop 設(shè)置內(nèi)容的上padding 
app:contentPaddingRight 設(shè)置內(nèi)容的右padding 
app:contentPaddingBottom 設(shè)置內(nèi)容的底padding
 */
 
public class MainActivity extends AppCompatActivity {
  CardView cardView;
 
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_first);
    cardView = (CardView) findViewById(R.id.cardView);
    cardView.setRadius(8);//設(shè)置圖片圓角的半徑大小
    cardView.setCardElevation(8);//設(shè)置陰影部分大小
    cardView.setContentPadding(5, 5, 5, 5);//設(shè)置圖片距離陰影大小
  }
}

布局頁(yè)面:

<?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:id="@+id/cardView"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:layout_margin="10dp"
  app:cardCornerRadius="8dp">
 
 
  <LinearLayout
    android:layout_width="600pt"
    android:layout_height="100pt"
    android:background="@drawable/bg_battery_detail"
    android:orientation="vertical">
 
    <RelativeLayout
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:layout_marginLeft="5dp"
      android:layout_marginRight="5dp"
      android:layout_marginTop="5dp"
      android:background="#184467">
 
      <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:orientation="horizontal">
 
        <TextView
          android:id="@+id/tvBatteryNo"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_centerVertical="true"
          android:text="電池編號(hào)"
          android:textColor="@color/color_z2"
          android:textSize="20sp" />
 
        <TextView
          android:id="@+id/tvBatterySlotNo"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_centerVertical="true"
          android:layout_marginLeft="15pt"
          android:text="@string/app_name"
          android:textColor="@color/white"
          android:textSize="20sp" />
      </LinearLayout>
 
      <ImageView
        android:id="@+id/ivCloseDialog"
        android:layout_width="39pt"
        android:layout_height="39pt"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:layout_marginRight="8pt"
        android:padding="7pt"
        android:src="@mipmap/popup_del" />
 
    </RelativeLayout>
 
 
  </LinearLayout>
 
 
</android.support.v7.widget.CardView>

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

相關(guān)文章

最新評(píng)論