溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Android中怎么利用CardView控件實(shí)現(xiàn)卡片效果

發(fā)布時(shí)間:2021-06-26 16:39:44 來源:億速云 閱讀:285 作者:Leah 欄目:編程語言

今天就跟大家聊聊有關(guān)Android中怎么利用CardView控件實(shí)現(xiàn)卡片效果,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

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è)置圖片距離陰影大小  }}

布局頁面:

<?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>

看完上述內(nèi)容,你們對(duì)Android中怎么利用CardView控件實(shí)現(xiàn)卡片效果有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI