2016-02-26 08:48:41 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-02-04 13:36:22 +03:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="64dp"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/status_image"
|
2020-07-07 07:26:25 +07:00
|
|
|
android:src="@drawable/ic_launcher"
|
2018-02-04 13:36:22 +03:00
|
|
|
android:layout_weight="0"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
2018-02-04 17:08:07 +03:00
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:layout_marginRight="8dp"/>
|
2018-02-04 13:36:22 +03:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/status_text"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:layout_weight="90"
|
|
|
|
android:text="Xash3D"
|
|
|
|
android:layout_gravity="center_vertical" />
|
|
|
|
<Button
|
|
|
|
android:id="@+id/status_exit_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="48dp"
|
2018-02-04 17:00:10 +03:00
|
|
|
android:text="@string/exit"
|
2018-02-04 13:36:22 +03:00
|
|
|
android:layout_weight="0"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_gravity="center_vertical"
|
2018-02-04 17:08:07 +03:00
|
|
|
android:layout_marginRight="8dp" />
|
2018-02-04 13:36:22 +03:00
|
|
|
</LinearLayout>
|