| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?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/attc_title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="#5680FA"
- app:lineSize="0dp"
- app:rightColor="@color/white"
- app:rightTitle="跳过此页" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="145dp"
- android:layout_below="@id/attc_title"
- android:background="#5680FA"
- 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="23sp" />
- </LinearLayout>
- <eVVM.apk.widget.RoundRectLayout
- android:id="@+id/likesbg"
- android:layout_width="331dp"
- android:layout_height="314dp"
- android:layout_below="@id/attc_title"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="98dp"
- 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>
|