31 lines
994 B
XML
31 lines
994 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<!-- 分类按钮容器 -->
|
|
<HorizontalScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:scrollbars="none">
|
|
<LinearLayout
|
|
android:id="@+id/categoryContainer"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:paddingLeft="16dp"
|
|
android:paddingRight="16dp"/>
|
|
</HorizontalScrollView>
|
|
|
|
|
|
<!-- 键盘列表 -->
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/keyboardRecyclerView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:padding="8dp"/>
|
|
|
|
</LinearLayout> |