1
0
mirror of http://galexander.org/git/simplesshd.git synced 2024-12-29 09:28:07 +00:00

manually specify last colors...

This commit is contained in:
Greg Alexander 2019-05-26 01:34:09 -04:00
parent 22d7993e23
commit 0a53e627d2
2 changed files with 8 additions and 4 deletions

6
NOTES
View File

@ -700,14 +700,14 @@ release it.
XXX - call checkSelfPermission/requestPermission to get WRITE_EXTERNAL_STORAGE (it only works now because it's grandfathered in) XXX - call checkSelfPermission/requestPermission to get WRITE_EXTERNAL_STORAGE (it only works now because it's grandfathered in)
XXX - fix color problem with newest API (override all colors, i think only the STOP/START button remains?)
XXX - upgrade to newest dropbear XXX - upgrade to newest dropbear
XXX - figure out what pie does to the boot event receiver XXX - figure out what pie does to the boot event receiver
XXX - see if settings looks better with SDK26, if not, hack it so that the ones with strings have their states shown XXX - see if settings looks better with SDK26, if not, hack it so that the ones with strings have their states shown
--- new release
XXX - ed25519 XXX - ed25519
XXX - try /data/data/com.termux/files/usr/bin/zsh as login shell XXX - try /data/data/com.termux/files/usr/bin/zsh as login shell
@ -720,3 +720,5 @@ XXX - libiconv? HAVE_ICONV_H etc
XXX - changelog: XXX - changelog:
- API 28 - API 28
- x86_64, arm64 - x86_64, arm64
- should now find native libraries even under a user account
- fix more possible color issues

View File

@ -2,7 +2,8 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:orientation="vertical"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="fill_parent"> android:layout_height="fill_parent"
android:background="#ff000000">
<TextView android:id="@+id/ip" <TextView android:id="@+id/ip"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
@ -29,5 +30,6 @@
android:layout_gravity="center" android:layout_gravity="center"
android:text="Start" android:text="Start"
android:textAppearance="?android:attr/textAppearanceLarge" android:textAppearance="?android:attr/textAppearanceLarge"
android:onClick="startstop_clicked" /> android:onClick="startstop_clicked"
android:background="#ffbbbbbb" />
</LinearLayout> </LinearLayout>