24 lines
788 B
XML
24 lines
788 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/layoutRoot"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:padding="24dp"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/statusTextView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Waiting for printer..."
|
|
android:textSize="18sp"
|
|
android:layout_marginBottom="24dp" />
|
|
|
|
<Button
|
|
android:id="@+id/printButton"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Print Test Page"
|
|
android:enabled="false" />
|
|
</LinearLayout>
|