diff options
author | Arne Schwabe <arne@rfc2549.org> | 2018-06-28 15:21:18 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2018-07-27 12:53:11 +0200 |
commit | 7b7940186fafcdf4bb15ea8e087b8cf345cd53c8 (patch) | |
tree | d11cb5bc887ace20d14ef42daf778709e7eb5e79 /tlsexternalcertprovider/src/main/res/layout | |
parent | d8ee68b5d912933f36e0fc9edc63a2e7eb7f819f (diff) |
First draft of an external TLS provider app.
Diffstat (limited to 'tlsexternalcertprovider/src/main/res/layout')
-rw-r--r-- | tlsexternalcertprovider/src/main/res/layout/activity_main.xml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tlsexternalcertprovider/src/main/res/layout/activity_main.xml b/tlsexternalcertprovider/src/main/res/layout/activity_main.xml new file mode 100644 index 00000000..3a1bf2f1 --- /dev/null +++ b/tlsexternalcertprovider/src/main/res/layout/activity_main.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ Copyright (c) 2012-2018 Arne Schwabe + ~ Distributed under the GNU GPL v2 with additional terms. For full terms see the file doc/LICENSE.txt + --> + +<LinearLayout android:orientation="vertical" + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:layout_width="match_parent" + android:layout_height="match_parent" + tools:context=".SelectCertificateActivity"> + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="This demo app has no sophisticated selection!" + /> + + <Button + android:id="@+id/nicecert" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="Send mynicecert as string back to app" + + /> +</LinearLayout>
\ No newline at end of file |