23 lines
780 B
XML
23 lines
780 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:card_view="http://schemas.android.com/apk/res-auto"
|
||
|
|
android:layout_width="@dimen/dp_90"
|
||
|
|
android:layout_height="75dp"
|
||
|
|
android:id="@+id/cardView"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="65dp"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/paymenttype"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:gravity="center"
|
||
|
|
android:padding="@dimen/sp_5">
|
||
|
|
</TextView>
|
||
|
|
</LinearLayout>
|
||
|
|
</LinearLayout>
|