2016-10-17 13:12:11 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content">
|
2016-10-17 13:47:36 +00:00
|
|
|
<ImageView android:id="@+id/n_icon"
|
|
|
|
android:layout_width="60dp"
|
|
|
|
android:layout_height="60dp"
|
|
|
|
android:scaleType="fitCenter" />
|
|
|
|
<TextView android:id="@+id/n_text"
|
2016-10-17 13:12:11 +00:00
|
|
|
android:layout_width="1dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2016-10-17 13:47:36 +00:00
|
|
|
android:layout_gravity="center_vertical|left"
|
2016-10-17 13:48:52 +00:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
2016-10-17 13:12:11 +00:00
|
|
|
android:text="SimpleSSHD is running" />
|
|
|
|
</LinearLayout>
|