-
Notifications
You must be signed in to change notification settings - Fork 0
/
currentpostuser.xml
41 lines (36 loc) · 1.47 KB
/
currentpostuser.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:elevation="2dp"
android:layout_margin="10dp"
android:padding="10dp"
android:orientation="horizontal"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:orientation="vertical"
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="match_parent">
<TextView
android:id="@+id/del_book_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Book Name"
android:textColor="@color/colorPrimaryDark"
android:textStyle="bold"/>
<TextView
android:id="@+id/del_price"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="book price" />
</LinearLayout>
<Button
android:id="@+id/delete_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:backgroundTint="@color/colorPrimary"
android:textColor="#fff"
android:text="delete" />
</LinearLayout>