Created
November 6, 2020 10:42
-
-
Save mattiaferigutti/28aaad64c67b2fbda7b23950c3c8ab0d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <LinearLayout | |
| xmlns:android="http://schemas.android.com/apk/res/android" | |
| xmlns:tools="http://schemas.android.com/tools" | |
| android:layout_width="match_parent" | |
| android:layout_height="match_parent" | |
| xmlns:app="http://schemas.android.com/apk/res-auto" | |
| android:background="@drawable/corner" | |
| tools:context=".WindowFragment"> | |
| <FrameLayout | |
| android:animateLayoutChanges="true" | |
| android:orientation="horizontal" | |
| android:layout_width="match_parent" | |
| android:layout_height="70dp" | |
| android:elevation="10dp" | |
| android:layout_marginBottom="-20dp" | |
| android:background="@drawable/corner" | |
| app:layout_constraintEnd_toEndOf="parent" | |
| app:layout_constraintStart_toStartOf="parent" | |
| app:layout_constraintTop_toTopOf="parent"> | |
| <androidx.appcompat.widget.AppCompatTextView | |
| android:id="@+id/textResult" | |
| android:layout_marginStart="15dp" | |
| android:layout_gravity="center|start" | |
| android:layout_width="wrap_content" | |
| android:layout_height="wrap_content" | |
| android:text="0 results" | |
| android:textColor="#2B2B2B" | |
| android:textSize="20sp" /> | |
| <ImageButton | |
| android:background="@android:color/transparent" | |
| android:id="@+id/filterImage" | |
| android:layout_width="wrap_content" | |
| android:layout_height="wrap_content" | |
| android:src="@drawable/ic_baseline_filter_list_24" | |
| android:layout_gravity="center|end" | |
| android:layout_marginEnd="15dp"/> | |
| </FrameLayout> | |
| </LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment