1
0
mirror of http://galexander.org/git/simplesshd.git synced 2024-11-30 19:28:10 +00:00
simplesshd/res/layout/notification.xml
2016-10-17 09:48:52 -04:00

18 lines
659 B
XML

<?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">
<ImageView android:id="@+id/n_icon"
android:layout_width="60dp"
android:layout_height="60dp"
android:scaleType="fitCenter" />
<TextView android:id="@+id/n_text"
android:layout_width="1dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="center_vertical|left"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="SimpleSSHD is running" />
</LinearLayout>