native-android-csharp/DemoAndroid/Resources/layout/activity_wakeonlan.xml
2024-06-19 16:16:38 +02:00

19 lines
785 B
XML

<?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>