1
0
mirror of http://galexander.org/git/simplesshd.git synced 2024-12-02 12:18:14 +00:00
simplesshd/res/layout/notification.xml
Greg Alexander f652b1b3c6 add a contentView to the notification, which is needed at least in
android 5 (and probably earlier)
2016-10-17 09:12:11 -04:00

13 lines
491 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">
<TextView android:id="@+id/notification_text"
android:layout_width="1dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="SimpleSSHD is running" />
</LinearLayout>