You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
3.7 KiB
104 lines
3.7 KiB
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/linearlay_1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="horizontal"
|
|
android:background="#000000"
|
|
/>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/bottomButtonsLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:layout_alignParentBottom="true"
|
|
android:gravity="center">
|
|
|
|
<Button
|
|
android:id="@+id/button_front"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="8dp"
|
|
android:layout_marginStart="8dp"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/button_techno_style"
|
|
android:textColor="@color/white"
|
|
android:text="前摄" />
|
|
|
|
<Button
|
|
android:id="@+id/button_back"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_marginStart="8dp"
|
|
android:layout_marginEnd="8dp"
|
|
android:background="@drawable/button_techno_style"
|
|
android:textColor="@color/white"
|
|
android:text="后摄" />
|
|
|
|
<Button
|
|
android:id="@+id/button_left"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_marginStart="8dp"
|
|
android:layout_marginEnd="8dp"
|
|
android:background="@drawable/button_techno_style"
|
|
android:textColor="@color/white"
|
|
android:text="左摄" />
|
|
|
|
<Button
|
|
android:id="@+id/button_right"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_marginStart="8dp"
|
|
android:layout_marginEnd="8dp"
|
|
android:background="@drawable/button_techno_style"
|
|
android:textColor="@color/white"
|
|
android:text="右摄" />
|
|
|
|
<Button
|
|
android:id="@+id/button_top"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_marginStart="8dp"
|
|
android:layout_marginEnd="8dp"
|
|
android:background="@drawable/button_techno_style"
|
|
android:textColor="@color/white"
|
|
android:text="环绕" />
|
|
|
|
<Button
|
|
android:id="@+id/button_lr"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_marginStart="8dp"
|
|
android:layout_marginEnd="8dp"
|
|
android:background="@drawable/button_techno_style"
|
|
android:textColor="@color/white"
|
|
android:text="设置" />
|
|
|
|
<Button
|
|
android:id="@+id/button_capture"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_marginStart="8dp"
|
|
android:layout_marginEnd="8dp"
|
|
android:background="@drawable/button_techno_style"
|
|
android:textColor="@color/white"
|
|
android:text="抓图" />
|
|
|
|
<!-- 添加更多底部按钮 -->
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</RelativeLayout>
|