2016-02-26 08:48:41 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-03-24 22:03:00 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="65sp"
|
2017-03-26 22:11:27 +00:00
|
|
|
android:orientation="horizontal">
|
2017-03-24 22:03:00 +00:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/status_image"
|
2017-03-26 22:11:27 +00:00
|
|
|
android:layout_width="32sp"
|
|
|
|
android:layout_height="32sp"
|
2017-03-24 22:03:00 +00:00
|
|
|
android:src="@drawable/ic_launcher"
|
|
|
|
android:layout_weight="00"
|
|
|
|
android:layout_gravity="center_vertical" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/status_text"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_marginLeft="10dip"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:layout_weight="90"
|
|
|
|
android:text="Xash3D"
|
2017-03-26 22:11:27 +00:00
|
|
|
android:layout_gravity="center_vertical"/>
|
2017-03-24 22:03:00 +00:00
|
|
|
<Button
|
|
|
|
android:id="@+id/status_exit_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Exit"
|
|
|
|
android:layout_weight="0"
|
|
|
|
android:layout_alignParentLeft="true"
|
2017-03-26 22:11:27 +00:00
|
|
|
android:layout_gravity="center_vertical" />
|
|
|
|
</LinearLayout>
|