就在你的依賴添加此
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
card_view:cardCornerRadius="1dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:context="com.eugene.fithealth.TestingForSO">
<ImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="200dp"
android:orientation="vertical"
android:scaleType="centerCrop"
android:src="@drawable/drawer_image"/>
<TextView
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_above="@+id/description"
android:background="#50000000"
android:gravity="center_vertical"
android:paddingLeft="16dp"
android:text="Hello World!"
android:textColor="#fff"
android:textSize="22dp"/>
<TextView
android:id="@+id/description"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/image"
android:layout_marginBottom="8dp"
android:paddingLeft="16dp"
android:paddingTop="16dp"
android:text="Random Text Blah Blah Blah"
android:textSize="16dp"/>
<Button
android:id="@+id/btnOne"
style="?android:buttonBarButtonStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/description"
android:layout_marginBottom="4dp"
android:layout_marginLeft="4dp"
android:text="Button One"
android:textColor="#000"/>
<Button
android:id="@+id/btnTwo"
style="?android:buttonBarButtonStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/description"
android:layout_toRightOf="@id/btnOne"
android:text="Button Two"
android:textColor="#03A9F4"/>
</RelativeLayout>
</android.support.v7.widget.CardView>
如何製作完全一樣的視圖? – dyoordec
@dyoordec剛剛更新了我的答案。如果這是你正在尋找並解決你的問題不要忘記標記爲正確的。 –
@dyoordec這是正確的嗎? –