| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout 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:orientation="vertical"
- tools:context=".ui.launcher.LikeActivity">
- <com.hjq.bar.TitleBar
- android:id="@+id/like_title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="#5680FA"
- app:lineSize="0dp"
- app:backButton="false"
- app:rightColor="@color/white"
- app:rightTitle="跳过此页" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="145dp"
- android:background="#5680FA"
- android:layout_below="@id/like_title"
- android:orientation="vertical"
- android:paddingLeft="18dp">
- <TextView
- android:id="@+id/likes_tv_genju"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="10dp"
- android:text="@string/like_title_genju"
- android:textColor="@color/white"
- android:textSize="20sp" />
- <TextView
- android:id="@+id/likes_tv_tuijian"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="10dp"
- android:text="@string/like_title_tuijian"
- android:textColor="@color/white"
- android:textSize="20sp" />
- </LinearLayout>
- <eVVM.apk.widget.RoundRectLayout
- android:id="@+id/likesbg"
- android:layout_below="@id/like_title"
- android:layout_width="331dp"
- android:layout_height="314dp"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="100dp"
- android:paddingTop="18.5dp"
- android:background="@color/white">
- <eVVM.apk.widget.LineBreakLayout
- android:id="@+id/like_lineBreakLayout"
- android:layout_margin="20dp"
- app:leftAndRightSpace="20dp"
- app:rowSpace="10dp"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- </eVVM.apk.widget.LineBreakLayout>
- </eVVM.apk.widget.RoundRectLayout>
- <Button
- android:id="@+id/like_btn_true"
- android:layout_width="283dp"
- android:layout_height="48dp"
- android:layout_below="@id/likesbg"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="29dp"
- android:background="@drawable/selector_button"
- android:text="@string/dialog_confirm"
- android:textColor="@color/white"
- android:textSize="15.3sp" />
- </RelativeLayout>
|