2
我爲我的listview實現項目的cardview佈局。佈局CardView前棒棒糖和棒棒糖效果
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/cv"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp"
>
<TextView android:id="@+id/title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Titolo"
android:layout_marginTop="5dp"
android:textSize="18sp"
android:background="#ccdbe5"
android:textColor="#004B7D"/>
<TextView android:id="@+id/subtitle"
android:layout_width="fill_parent"
android:text="Sottotitolo"
android:layout_marginTop="5dp"
android:textColor="#000"
android:layout_below="@+id/title"
android:textSize="15sp"
android:layout_height="wrap_content"
/>
</RelativeLayout>
</android.support.v7.widget.CardView>
的問題是在預棒棒糖的效果是好的,我看到很清楚的卡。但在棒棒糖設備中我看不太清楚。
我該如何解決這個問題?