Android 컨트롤 CardView 카드 효과 구현
먼저 실행 중인 효과 도 를 보십시오:
1.의존 도 추가
implementation 'com.android.support:cardview-v7:25.3.1'
2.메 인 화면 에 카드 의 속성 설정:
package com.example.admin.ztest;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.CardView;
/*
app:cardBackgroundColor
app:cardCornerRadius
app:cardElevation z
app:cardMaxElevation z
app:cardUseCompatPadding CompatPadding
app:cardPreventCornerOverlap PreventCornerOverlap
app:contentPadding padding
app:contentPaddingLeft padding
app:contentPaddingTop padding
app:contentPaddingRight padding
app:contentPaddingBottom 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);//
cardView.setCardElevation(8);//
cardView.setContentPadding(5, 5, 5, 5);//
}
}
레이아웃 페이지:
<?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=" "
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>
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Bitrise에서 배포 어플리케이션 설정 테스트하기이 글은 Bitrise 광고 달력의 23일째 글입니다. 자체 또는 당사 등에서 Bitrise 구축 서비스를 사용합니다. 그나저나 며칠 전 Bitrise User Group Meetup #3에서 아래 슬라이드를 발표했...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.