You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
114 lines
3.6 KiB
XML
114 lines
3.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/_120dp"
|
|
android:background="@color/_242f4d"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
|
|
|
|
<LinearLayout
|
|
android:id="@+id/back_area"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center_vertical"
|
|
android:focusable="true"
|
|
android:paddingStart="16dp"
|
|
android:paddingEnd="16dp">
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="@dimen/_40dp"
|
|
android:layout_marginStart="@dimen/_31dp"
|
|
android:src="@mipmap/ic_back" />
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="@dimen/_23dp"
|
|
android:text="Title"
|
|
android:textColor="@color/white"
|
|
android:textSize="@dimen/_36dp" />
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/ops_container"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingStart="@dimen/_90dp"
|
|
android:orientation="horizontal" />
|
|
|
|
<Space
|
|
android:layout_width="0dp"
|
|
android:layout_height="1px"
|
|
android:layout_weight="1" />
|
|
|
|
<TextClock
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:format12Hour="HH:mm"
|
|
android:format24Hour="HH:mm"
|
|
android:textColor="@color/white"
|
|
android:textSize="@dimen/_30dp" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical"
|
|
android:layout_marginStart="@dimen/_40dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/battery"
|
|
android:layout_width="@dimen/_50dp"
|
|
android:layout_height="@dimen/_27dp"
|
|
android:src="@drawable/battery"/>
|
|
<TextView
|
|
android:id="@+id/battery_txt"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="@dimen/_6dp"
|
|
android:textColor="@color/white"
|
|
android:gravity="center"
|
|
android:textSize="@dimen/_23dp"
|
|
android:text="60"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical"
|
|
android:layout_marginStart="@dimen/_40dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/wifi"
|
|
android:layout_width="@dimen/_37dp"
|
|
android:layout_height="@dimen/_27dp"
|
|
android:src="@drawable/wifi"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical"
|
|
android:layout_marginStart="@dimen/_40dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/four_g"
|
|
android:layout_width="@dimen/_37dp"
|
|
android:layout_height="@dimen/_27dp"
|
|
android:src="@drawable/net"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<Space
|
|
android:layout_width="@dimen/_36dp"
|
|
android:layout_height="match_parent" />
|
|
|
|
</LinearLayout> |