Wake on lan demo added

This commit is contained in:
Maurice
2024-06-19 16:16:38 +02:00
parent 41d2061d38
commit 9d6aaccc0c
5 changed files with 94 additions and 4 deletions

View File

@@ -12,4 +12,12 @@
<ImageView android:id="@+id/ivQR"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<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"/>
</LinearLayout>

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Start PC by tapping button below" />
<Button android:id="@+id/btnWakeOnLan"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Start PC"
android:textColor="@color/white"
android:background="@color/blue"
android:height="15pt"
android:layout_margin="10pt"/>
</LinearLayout>