22 lines
911 B
XML
22 lines
911 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<org.autojs.autojs.ui.explorer.ExplorerProjectToolbar
|
|
android:id="@+id/project_toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="2dp"
|
|
android:foreground="?selectableItemBackground"
|
|
app:cardElevation="0.97dp"
|
|
app:cardUseCompatPadding="true" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/explorer_item_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout> |