-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathitem_hyperlink.xml
More file actions
39 lines (36 loc) · 1.44 KB
/
item_hyperlink.xml
File metadata and controls
39 lines (36 loc) · 1.44 KB
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
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="18dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="18dp"
android:text="@string/title_hyperlink"
android:textColor="?colorOnSurface"
android:textSize="18sp"
android:textStyle="bold" />
<com.webtoonscorp.android.readmore.ReadMoreTextView
android:id="@+id/description"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="18dp"
android:layout_marginTop="5dp"
android:layout_marginEnd="18dp"
android:layout_marginBottom="18dp"
android:lineSpacingExtra="4sp"
android:textColor="?colorOnSurface"
android:textSize="15sp"
android:textStyle="normal"
app:readLessText="@string/read_less"
app:readMoreMaxLines="3"
app:readMoreText="@string/read_more"
app:readMoreTextUnderline="true"
app:readMoreToggleArea="none" />
</LinearLayout>