|
|
@@ -56,8 +56,8 @@
|
|
|
android:id="@+id/et_ticket_id"
|
|
|
android:layout_width="100dp"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:inputType="number"
|
|
|
- android:hint="Ticket ID" />
|
|
|
+ android:hint="Ticket ID"
|
|
|
+ android:inputType="number" />
|
|
|
|
|
|
<Button
|
|
|
android:id="@+id/ticket_detail"
|
|
|
@@ -69,4 +69,72 @@
|
|
|
android:text="Get Ticket Detail"
|
|
|
android:textSize="10sp" />
|
|
|
</LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/et_lock_nfc"
|
|
|
+ android:layout_width="300dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:hint="Lock NFC"
|
|
|
+ android:inputType="number" />
|
|
|
+
|
|
|
+ <Button
|
|
|
+ android:id="@+id/lock_take"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="50dp"
|
|
|
+ android:layout_margin="5dp"
|
|
|
+ android:minWidth="0dp"
|
|
|
+ android:minHeight="0dp"
|
|
|
+ android:text="Update Lock Take"
|
|
|
+ android:textSize="10sp" />
|
|
|
+
|
|
|
+ <Button
|
|
|
+ android:id="@+id/lock_return"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="50dp"
|
|
|
+ android:layout_margin="5dp"
|
|
|
+ android:minWidth="0dp"
|
|
|
+ android:minHeight="0dp"
|
|
|
+ android:text="Update Lock Return"
|
|
|
+ android:textSize="10sp" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/et_key_nfc"
|
|
|
+ android:layout_width="100dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:hint="Key NFC"
|
|
|
+ android:inputType="number" />
|
|
|
+
|
|
|
+ <Button
|
|
|
+ android:id="@+id/key_take"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="50dp"
|
|
|
+ android:layout_margin="5dp"
|
|
|
+ android:minWidth="0dp"
|
|
|
+ android:minHeight="0dp"
|
|
|
+ android:text="Update Key Take"
|
|
|
+ android:textSize="10sp" />
|
|
|
+
|
|
|
+ <Button
|
|
|
+ android:id="@+id/key_return"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="50dp"
|
|
|
+ android:layout_margin="5dp"
|
|
|
+ android:minWidth="0dp"
|
|
|
+ android:minHeight="0dp"
|
|
|
+ android:text="Update Key Return"
|
|
|
+ android:textSize="10sp" />
|
|
|
+ </LinearLayout>
|
|
|
</LinearLayout>
|