POZO_Retail/app/build/intermediates/merged-not-compiled-resources/release/layout/activity_main.xml

24 lines
788 B
XML
Raw Normal View History

2025-08-26 13:45:32 +05:30
<?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>