25 lines
891 B
XML
25 lines
891 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
tools:viewBindingIgnore="true"
|
|
android:layout_height="match_parent">
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/add_skill_list_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
|
|
<Button
|
|
android:id="@+id/add_skill_select_button"
|
|
android:layout_width="300dp"
|
|
android:layout_height="48dp"
|
|
android:layout_marginBottom="51dp"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_alignParentBottom="true"
|
|
android:enabled="false"
|
|
android:text="提交"
|
|
android:textSize="17sp"/>
|
|
|
|
|
|
</RelativeLayout> |