20 lines
743 B
XML
20 lines
743 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<com.ck.ckcollar.app.widget.CKLinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:gravity="center_horizontal"
|
|
>
|
|
<Button
|
|
android:id="@+id/btnScan"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="50dp"
|
|
android:text="扫描"
|
|
></Button>
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/recyclerView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
></androidx.recyclerview.widget.RecyclerView>
|
|
|
|
</com.ck.ckcollar.app.widget.CKLinearLayout> |