mirror of
http://galexander.org/git/simplesshd.git
synced 2025-01-15 01:20:55 +00:00
specify the foreground color, because that was the only thing causing
trouble when running on the optimus v (the log display was black on black). NB - this will probably fix the SDK 26 theme problem too!
This commit is contained in:
parent
932508f702
commit
f1c8faad21
@ -171,7 +171,8 @@ harmless.
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li> <b>2018/05/19 Version 19:</b> Use the app-private directory by
|
<li> <b>2018/05/19 Version 19:</b> Use the app-private directory by
|
||||||
default on new installs for the SSH/home dir. Organize settings.
|
default on new installs for the SSH/home dir. Organize settings. Fix
|
||||||
|
black-on-black text on some devices.
|
||||||
<li> <b>2018/05/16 Version 18:</b> Use correct idiom for <tt>su</tt> as a
|
<li> <b>2018/05/16 Version 18:</b> Use correct idiom for <tt>su</tt> as a
|
||||||
login shell (so busybox <tt>su</tt> can work). Add environment variables
|
login shell (so busybox <tt>su</tt> can work). Add environment variables
|
||||||
to settings.
|
to settings.
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||||
android:typeface="monospace"
|
android:typeface="monospace"
|
||||||
android:background="#ff112266"
|
android:background="#ff112266"
|
||||||
|
android:textColor="#ffffffff"
|
||||||
android:text="IP: XXX" />
|
android:text="IP: XXX" />
|
||||||
<EditText android:id="@+id/log"
|
<EditText android:id="@+id/log"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
@ -20,7 +21,8 @@
|
|||||||
android:typeface="monospace"
|
android:typeface="monospace"
|
||||||
android:gravity="top"
|
android:gravity="top"
|
||||||
android:singleLine="false"
|
android:singleLine="false"
|
||||||
android:background="#00000000" />
|
android:background="#00000000"
|
||||||
|
android:textColor="#ffffffff" />
|
||||||
<Button android:id="@+id/startstop"
|
<Button android:id="@+id/startstop"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
Loading…
Reference in New Issue
Block a user