23 lines
799 B
XML
23 lines
799 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
tools:context=".RealTimeActivity">
|
|
|
|
<Button
|
|
android:id="@+id/snapshotStart"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="20dp"
|
|
android:text="开启实时数据上传" />
|
|
|
|
<Button
|
|
android:id="@+id/snapshotStop"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="20dp"
|
|
android:text="结束实时数据上传" />
|
|
|
|
</LinearLayout> |