iT邦幫忙

第 12 屆 iThome 鐵人賽

DAY 22
0
Mobile Development

Android開發系列 第 22

[Day22]簡單的CardView

  • 分享至 

  • xImage
  •  

哈囉大家好,今天我要來介紹cardview,card繼承自FrameLayout,是一種卡片視圖,主要是以卡片的形式顯示內容,cardview可以設置陰影和圓角,他也可以做為前幾天介紹的ListView和RecyclerView的item使用,廢話不多說,那我就開始示範吧!

首先我們在gradle內新增下面程式碼:

implementation 'androidx.cardview:cardview:1.0.0'

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#F3C7C7"
    android:orientation="vertical"
    tools:context=".MainActivity">

    <androidx.cardview.widget.CardView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="10dp">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="70dp"
            android:layout_margin="10dp"
            android:text="普通的cardview"
            android:textSize="30sp" />

    </androidx.cardview.widget.CardView>

    <androidx.cardview.widget.CardView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="10dp"
        app:cardBackgroundColor="#F6E29D"
        app:cardCornerRadius="50dp">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="70dp"
            android:layout_gravity="center"
            android:layout_margin="10dp"
            android:text="背景顏色和圓角大小"
            android:textSize="30sp" />

    </androidx.cardview.widget.CardView>

    <androidx.cardview.widget.CardView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="10dp"
        app:cardBackgroundColor="#E8B70E"
        app:cardElevation="30dp"
        app:cardMaxElevation="10dp">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="70dp"
            android:layout_gravity="center"
            android:layout_margin="10dp"
            android:text="陰影大小和陰影高度"
            android:textSize="30sp" />

    </androidx.cardview.widget.CardView>

    <androidx.cardview.widget.CardView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="10dp"
        android:id="@+id/cardview">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="100dp"
            android:text="將cardview變成可點擊的item"
            android:textSize="30sp" />

    </androidx.cardview.widget.CardView>


</LinearLayout>

我介紹一下cardview可以使用到的功能:

  • cardBackgroundColor 設定cardview的背景色
  • cardCornerRadius 設定cardview的圓角大小
  • cardElevation 設定cardview陰影的大小
  • cardMaxElevation 設定cardview陰影的最大高度
  • setContentPadding 設定cardview內容的padding

我在佈局方面給他了四個cardview,第一個是完全都沒有加任何設定的普通cardview,第二個是設定了cardview的背景顏色和圓角,第三個設定了新增了陰影大小和高度,第四個則是點下去會有反應的cardview。

MainActivity

import androidx.appcompat.app.AppCompatActivity;
import androidx.cardview.widget.CardView;

import android.graphics.Color;
import android.os.Bundle;
import android.view.View;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity {

    private CardView cardView;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        cardView =findViewById(R.id.cardview);
        cardView.setCardBackgroundColor(Color.BLUE);
        cardView.setCardElevation(20);
        cardView.setRadius(20);
        cardView.setContentPadding(40,40,40,40);
        cardView.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Toast.makeText(MainActivity.this,"您點擊了cardview",Toast.LENGTH_SHORT).show();
            }
        });

    }

}

最後在MainActivity裡面也是可以設定cardview的格式,我在示範裡面設定了他的背景顏色、陰影、圓角以及點下去會通知使用者點擊了cardview。

那今天的示範就到這了,謝謝大家的觀看。


上一篇
[Day21] 簡單的ListView_3
下一篇
[Day23] RecyclerView_1
系列文
Android開發30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言