cnsteam_layout_with_logo.xml
1.42 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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/layout_with_logo"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/cnstream_start_background"
tools:context="com.wepiao.star.starlive.ui.StreamActivity">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="44dp">
<ImageView
android:id="@+id/back"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_marginLeft="3dp"
android:layout_centerVertical="true"
android:padding="12dp"
android:src="@drawable/cnstream_back" />
</RelativeLayout>
<ImageView
android:id="@+id/logo_top"
android:layout_width="120dp"
android:layout_height="38dp"
android:layout_centerHorizontal="true"
android:layout_marginTop="130dp"
android:background="@drawable/cnstream_logo01" />
<ImageView
android:id="@+id/logo_bottom"
android:layout_width="170dp"
android:layout_height="54dp"
android:layout_below="@+id/logo_top"
android:layout_centerHorizontal="true"
android:layout_marginTop="25dp"
android:background="@drawable/cnstream_logo02" />
</RelativeLayout>