attention_fragment.xml
1.26 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
<?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="match_parent"
android:gravity="center_vertical"
android:background="@drawable/person_bg"
android:orientation="horizontal"
tools:context="com.studymachine.www.ui.fragment.AttentionFragment">
<androidx.appcompat.widget.LinearLayoutCompat
android:layout_width="0px"
android:layout_height="@dimen/dp_291"
android:layout_marginStart="@dimen/dp_100"
android:layout_marginEnd="@dimen/dp_23"
android:layout_weight="1"
android:background="@drawable/person_attention_bg"
android:orientation="vertical"
android:paddingHorizontal="@dimen/dp_14"
android:paddingVertical="@dimen/dp_12">
<androidx.appcompat.widget.AppCompatImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/person_attention_banner" />
<include layout="@layout/attention_view"/>
</androidx.appcompat.widget.LinearLayoutCompat>
</LinearLayout>