67 lines
2.4 KiB
XML
67 lines
2.4 KiB
XML
<?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:orientation="vertical"
|
|
tools:context=".view.main.VideoFriendActivity">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp45"
|
|
android:layout_marginHorizontal="@dimen/dp24"
|
|
android:layout_marginTop="@dimen/dp30"
|
|
android:orientation="horizontal">
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/rl_back"
|
|
android:layout_width="@dimen/dp60"
|
|
android:layout_height="@dimen/dp45">
|
|
|
|
<ImageView
|
|
android:layout_width="@dimen/dp14"
|
|
android:layout_height="@dimen/dp12"
|
|
android:layout_centerVertical="true"
|
|
android:src="@mipmap/ic_black_back"/>
|
|
</RelativeLayout>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:gravity="center"
|
|
android:textColor="@color/black"
|
|
android:layout_gravity="center"
|
|
android:textSize="@dimen/dp18"
|
|
android:textStyle="bold"
|
|
android:text="视频交友"/>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="@dimen/dp60"
|
|
android:layout_height="@dimen/dp45">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_set_home"
|
|
android:layout_width="@dimen/dp60"
|
|
android:layout_height="@dimen/dp24"
|
|
android:layout_weight="1"
|
|
android:gravity="center"
|
|
android:textColor="@color/white"
|
|
android:layout_centerVertical="true"
|
|
android:layout_gravity="center"
|
|
android:background="@drawable/shape_button_enable"
|
|
android:textSize="12sp"
|
|
android:textStyle="bold"
|
|
android:text="设为首页"/>
|
|
</RelativeLayout>
|
|
</LinearLayout>
|
|
|
|
|
|
<FrameLayout
|
|
android:id="@+id/content_frame_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
</LinearLayout> |