-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathitemLayout.aly
More file actions
40 lines (40 loc) · 845 Bytes
/
itemLayout.aly
File metadata and controls
40 lines (40 loc) · 845 Bytes
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
{
LinearLayout;
layout_height="wrap";
layout_width="fill";
orientation="horizontal";
padding="16dp";
{
LinearLayout;
layout_height="wrap";
layout_width=0;
layout_weight=1;
orientation="vertical";
{
TextView;
id="title";
layout_height="wrap";
layout_width="wrap";
textSize="16sp";
textColor=android.res.color.attr.textColorPrimary;
};
{
TextView;
id="summary";
layout_height="wrap";
layout_width="wrap";
textSize="14sp";
textColor=android.res.color.attr.textColorSecondary;
};
};
{
ImageView;
layout_height="24dp";
layout_width="24dp";
src="images/chevron-right.png";
colorFilter=android.res.color.attr.textColorPrimary;
alpha=0.6;
layout_gravity="center";
layout_marginStart="16dp",
};
}