mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-17 09:29:20 +01:00
b7b0f07ba8
- Logo is now displayed next to the app name - Remove search bar animation - New color accent - Improve visibility of controller binding setting's glyphs
50 lines
2.1 KiB
XML
50 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
tools:parentTag="com.google.android.material.card.MaterialCardView">
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:id="@+id/motion_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:motionProgress="1"
|
|
tools:motionDebug="SHOW_ALL">
|
|
|
|
<ImageView
|
|
android:id="@+id/search_icon"
|
|
android:layout_width="22dp"
|
|
android:layout_height="22dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:contentDescription="@string/search"
|
|
app:srcCompat="@drawable/ic_search"
|
|
app:tint="?android:attr/textColorSecondary"
|
|
android:layout_marginStart="16dp"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"/>
|
|
|
|
<EditText
|
|
android:id="@+id/search_field"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginEnd="16dp"
|
|
android:background="@null"
|
|
android:focusedByDefault="false"
|
|
android:hint="@string/search"
|
|
android:importantForAutofill="no"
|
|
android:inputType="text"
|
|
android:singleLine="true"
|
|
android:textSize="16sp"
|
|
app:layout_constrainedWidth="true"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintHorizontal_bias="0"
|
|
app:layout_constraintStart_toEndOf="@id/search_icon"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
tools:ignore="LabelFor" />
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
</merge> |