# Conflicts: # app/src/main/java/com/shuwei/intelligent/shelves/InitActivity.kt # app/src/main/java/com/shuwei/intelligent/shelves/net/ApiService.kt # app/src/main/java/com/shuwei/intelligent/shelves/net/NetViewModel.kt
50 lines
1.8 KiB
XML
50 lines
1.8 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"
|
|
android:fitsSystemWindows="false"
|
|
tools:background="@color/bg_page">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/flStatusBar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="30dp">
|
|
<!-- android:paddingTop="9dp"-->
|
|
|
|
<TextView
|
|
android:id="@+id/tv_left_status"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center_vertical"
|
|
android:textColor="@color/white"
|
|
android:layout_gravity="start"
|
|
android:textSize="12sp"
|
|
android:paddingStart="12dp"
|
|
android:paddingEnd="0dp"
|
|
android:fontFamily="sans-serif-medium"
|
|
tools:text="1-1冷藏柜 -2°C / 87%" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_right_status"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center_vertical"
|
|
android:textColor="@color/white"
|
|
android:layout_gravity="end"
|
|
android:fontFamily="sans-serif-medium"
|
|
android:textSize="12sp"
|
|
android:paddingStart="0dp"
|
|
android:paddingEnd="12dp"
|
|
tools:text="6月22日 星期日 15:26:33" />
|
|
</FrameLayout>
|
|
|
|
|
|
<FrameLayout
|
|
android:id="@+id/flContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
</LinearLayout> |