2021-06-02 16:09:21 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- This is used to inflate a chip with a Material theme, otherwise it would crash -->
|
|
|
|
<!-- Theme.MaterialComponents.DayNight is used to guarantee auto day/night switching -->
|
|
|
|
<com.google.android.material.chip.Chip xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-06-09 15:26:10 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2021-06-02 16:09:21 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:theme="@style/Theme.MaterialComponents.DayNight.Bridge"
|
2021-06-09 15:26:10 +02:00
|
|
|
app:chipMinTouchTargetSize="40dp"
|
2021-06-02 16:09:21 +02:00
|
|
|
tools:text="I'm a correctly themed chip!" />
|