native-android-csharp/DemoAndroid/Resources/layout/activity_main.xml

23 lines
954 B
XML
Raw Permalink Normal View History

2024-06-19 13:37:29 +00:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<EditText android:id="@+id/etInput"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Enter text here to create QR"/>
<ImageView android:id="@+id/ivQR"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
2024-06-19 14:16:38 +00:00
<Button android:id="@+id/btnWolPage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Go to wake on lan page"
android:background="@color/blue"
android:textColor="@color/white"
android:height="15pt"/>
2024-06-19 13:37:29 +00:00
</LinearLayout>