-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrow_list_style_style_activity.xml
82 lines (71 loc) · 3.23 KB
/
row_list_style_style_activity.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="210dp"
android:orientation="vertical">
<LinearLayout
android:id="@+id/row_styleActivity_main"
android:layout_width="match_parent"
android:layout_height="@dimen/row_height_styles_styleActivity"
android:layout_marginStart="10dp"
android:layout_marginEnd="10dp"
android:layout_gravity="center"
android:background="@drawable/styles_gray_backgrounds"
android:orientation="horizontal">
<ImageView
android:id="@+id/itemImg_view"
android:layout_width="150dp"
android:layout_height="150dp"
android:layout_gravity="center"
android:layout_marginStart="10dp"
android:background="@drawable/styles_edit_texts"
android:elevation="2dp"
android:padding="2dp"
android:scaleType="fitCenter" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="vertical">
<TextView
android:id="@+id/styleName_textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:layout_marginTop="18dp"
android:layout_marginEnd="10dp"
android:elevation="5dp"
android:padding="5dp"
android:textColor="#000"
android:textColorHint="#535353" />
<TextView
android:id="@+id/styleInfo_textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:layout_marginTop="5dp"
android:layout_marginEnd="10dp"
android:elevation="5dp"
android:padding="5dp"
android:textColor="#000"
android:textColorHint="#535353" />
</LinearLayout>
<com.skydoves.elasticviews.ElasticButton
android:id="@+id/btn_makeRowBigger_style_activity"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_gravity="end"
android:layout_marginEnd="10dp"
android:layout_marginBottom="10dp"
android:background="@drawable/styles_button_dark_gray_background"
android:drawableTop="@drawable/arrow_drop_down_menu"
android:tag="down"
app:button_scale="0.9" />
</LinearLayout>
</LinearLayout>
</LinearLayout>