Created
June 30, 2017 00:34
-
-
Save r9software/416257c11ae444fa6d8800cc47b6e7bb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<android.support.v7.widget.CardView | |
xmlns:android = "http://schemas.android.com/apk/res/android" | |
xmlns:card_view = "http://schemas.android.com/tools" | |
xmlns:app = "http://schemas.android.com/apk/res-auto" | |
android:id = "@+id/card_view1" | |
android:layout_width = "match_parent" | |
android:layout_height = "75dp" | |
android:layout_marginBottom = "10dp" | |
card_view:cardMaxElevation = "4dp" | |
card_view:cardElevation = "2dp" | |
card_view:contentPadding = "5dp"> | |
<RelativeLayout android:layout_width = "match_parent" | |
android:layout_height = "match_parent"> | |
<de.hdodenhof.circleimageview.CircleImageView | |
android:id = "@+id/recycler_view_customer_pic" | |
android:layout_width = "55dp" | |
android:layout_height = "55dp" | |
android:layout_marginTop = "10dp" | |
android:layout_marginBottom = "10dp" | |
android:layout_marginLeft = "10dp" | |
android:layout_centerVertical = "true" | |
android:src = "@mipmap/user_default" /> | |
<ImageButton | |
android:id = "@+id/recycler_view_customer_arrow" | |
android:layout_width = "wrap_content" | |
android:layout_height = "57dp" | |
android:layout_marginLeft = "320dp" | |
android:layout_centerVertical = "true" | |
android:background = "@color/white" | |
app:srcCompat = "@mipmap/icn_arrow_right" /> | |
<TextView | |
android:id = "@+id/recycler_view_customer_name" | |
android:layout_width = "wrap_content" | |
android:layout_height = "wrap_content" | |
android:layout_marginLeft = "12dp" | |
android:layout_toRightOf = "@id/recycler_view_customer_pic" | |
android:layout_marginTop = "18dp" | |
android:text = "Name" | |
android:textColor = "Bold" | |
android:textSize = "15sp" /> | |
<LinearLayout android:layout_width = "300dp" | |
android:layout_height = "wrap_content" android:layout_centerVertical = "true" | |
android:layout_alignLeft = "@+id/recycler_view_customer_name" | |
android:orientation = "horizontal"> | |
<TextView | |
android:id = "@+id/recycler_view_customer_total_value" | |
android:layout_width = "wrap_content" | |
android:layout_height = "wrap_content" | |
android:layout_marginRight = "8dp" | |
android:layout_marginTop = "45dp" | |
android:text = "$574.00" | |
android:textSize = "14sp" /> | |
<TextView | |
android:layout_width = "wrap_content" | |
android:layout_height = "wrap_content" | |
android:id = "@+id/recycler_view_customer_plus" | |
android:layout_marginRight = "8dp" | |
android:layout_marginTop = "45dp" | |
android:text = "+" | |
android:textSize = "14sp" /> | |
<TextView | |
android:id = "@+id/recycler_view_customer_unpaid_value" | |
android:layout_width = "wrap_content" | |
android:layout_height = "wrap_content" | |
android:layout_marginRight = "8dp" | |
android:layout_marginTop = "45dp" | |
android:text = "$6.00" | |
android:textColor = "@color/colorPrimary" | |
android:textSize = "14sp" /> | |
<TextView | |
android:layout_width = "wrap_content" | |
android:layout_height = "wrap_content" | |
android:id = "@+id/recycler_view_customer_unpaid" | |
android:layout_marginRight = "8dp" | |
android:layout_marginTop = "45dp" | |
android:text = "@string/unpaid" | |
android:textColor = "#4d4d4d" | |
android:textSize = "14sp" /> | |
</LinearLayout> | |
</RelativeLayout> | |
</android.support.v7.widget.CardView> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment