1.
compile 'com.android.support:cardview-v7:23.2.0'
2.カードビューの依存関係を追加し、XMLの下に取り、あなたがそれを橋渡ししている場所に置きます。 RecyclerView
とCardView
を使用するとします。上記のレイアウトには、2つのImageViews
とButton
などを使用します。画像をデザインし、レイアウトを確認します。あなたはあなたがカードのレイアウトを使用し、画像やボタン例えばビューを利用して、そのイベントを行うことができます 例えば
<?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"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
app:cardCornerRadius="2dp"
app:cardElevation="1dp"
app:cardUseCompatPadding="true"
card_view:cardPreventCornerOverlap="false">
<RelativeLayout
android:id="@+id/ll1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/icons"
android:padding="@dimen/margin_small">
<TextView
android:id="@+id/postTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginBottom="@dimen/margin_tiny"
android:maxLines="2"
android:text="TITLE OF THE POST"
android:textColor="@color/primary_text"
android:textSize="@dimen/font_regular"
android:textStyle="bold"
app:typeface="roboto_bold"/>
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="160dp"
android:background="@color/icons"
android:focusable="false"
android:scaleType="centerCrop"
android:layout_below="@+id/postTitle" />
</RelativeLayout>
欲しいものを達成することができるはずです。 – Haroon
FrameLayoutを使用します。 –