boorujelly/app/src/main/res/layout/activity_main.xml

44 lines
1.5 KiB
XML
Raw Normal View History

2022-02-06 18:12:27 +00:00
<?xml version="1.0" encoding="utf-8"?>
2022-02-22 19:47:15 +00:00
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
2022-02-06 18:12:27 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
2022-02-22 19:47:15 +00:00
android:orientation="vertical"
2022-02-06 18:12:27 +00:00
tools:context=".MainActivity">
2022-02-22 21:06:28 +00:00
<androidx.appcompat.widget.Toolbar
2022-02-19 17:17:15 +00:00
android:id="@+id/mainToolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/design_default_color_primary"
2022-02-22 21:06:28 +00:00
app:contentInsetStart="0dp">
2022-02-19 17:17:15 +00:00
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="7.5dp"
2022-02-22 21:06:28 +00:00
app:cardCornerRadius="7.5dp">
2022-02-19 17:17:15 +00:00
2022-02-22 21:06:28 +00:00
<androidx.appcompat.widget.SearchView
2022-02-19 17:17:15 +00:00
android:id="@+id/search"
android:layout_width="match_parent"
android:layout_height="match_parent"
2022-02-22 21:32:28 +00:00
app:iconifiedByDefault="false"
2022-02-19 17:17:15 +00:00
android:queryBackground="@android:color/transparent"
/>
</androidx.cardview.widget.CardView>
2022-02-22 21:06:28 +00:00
</androidx.appcompat.widget.Toolbar>
2022-02-19 17:17:15 +00:00
2022-02-08 22:38:09 +00:00
<FrameLayout
android:id="@+id/imageGridRecV"
android:layout_width="match_parent"
2022-02-19 17:17:15 +00:00
android:layout_height="wrap_content"
2022-02-22 19:47:15 +00:00
/>
2022-02-19 17:17:15 +00:00
2022-02-06 18:12:27 +00:00
2022-02-22 19:47:15 +00:00
</androidx.appcompat.widget.LinearLayoutCompat>