2025-08-06 18:57:26 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="300dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_title"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center_horizontal"
|
2025-09-03 15:53:49 +08:00
|
|
|
android:background="@drawable/ff029a45_4round_bg"
|
2025-08-06 18:57:26 +08:00
|
|
|
android:gravity="center"
|
|
|
|
|
android:padding="8dp"
|
|
|
|
|
android:text="返航"
|
|
|
|
|
android:textColor="#fff"
|
|
|
|
|
android:textSize="13sp" />
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
|
|
|
|
|
android:layout_margin="12dp"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:textColor="#F59393"
|
|
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:text=" 注意:不可降落在斜坡,沙地,水面,下降时周围十米内不可有障碍物"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<com.example.longyi_groundstation.Main.View.SlideToUnlockView
|
|
|
|
|
android:background="#ffffff"
|
|
|
|
|
android:id="@+id/unlockView"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="35dp"
|
|
|
|
|
android:layout_margin="8dp" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_message"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="30dp"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:background="#C3606060"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:text="取消"
|
|
|
|
|
android:textColor="#ffffff"
|
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|