Files
ClashMetaForAndroid/app/src/main/res/layout/activity_create_profile.xml
2020-02-11 16:20:36 +08:00

24 lines
888 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/toolbarColor" />
</com.google.android.material.appbar.AppBarLayout>
<ListView
android:id="@+id/mainList"
android:dividerHeight="0dp"
android:divider="@null"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>