anchor_banner_home.xml
1.46 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
40
41
42
43
44
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="115dp"
android:background="@drawable/home_frame_bottom" />
<RelativeLayout
android:id="@+id/bannertitle"
android:layout_width="match_parent"
android:layout_height="24dp"
android:layout_alignBottom="@+id/viewpager"
android:background="@mipmap/banner_icon">
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:maxLength="20"
android:maxLines="1"
android:paddingLeft="20dp"
android:textColor="@color/c_D8D8D8"
android:textSize="@dimen/sp_40"
android:visibility="gone"
tools:text="Title" />
<LinearLayout
android:id="@+id/viewGroup"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_centerInParent="true"
android:gravity="center"
android:orientation="horizontal" />
</RelativeLayout>
</merge>