layout_settings_button.xml 1020 B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:layout_width="match_parent"
  5. android:layout_height="wrap_content">
  6. <com.google.android.material.chip.Chip
  7. android:id="@+id/chip"
  8. android:layout_width="0dp"
  9. android:layout_height="wrap_content"
  10. android:layout_marginStart="16dp"
  11. android:layout_marginEnd="16dp"
  12. android:textColor="?android:textColorPrimary"
  13. app:chipBackgroundColor="?attr/colorPrimary"
  14. app:chipCornerRadius="16dp"
  15. app:chipIconTint="?android:textColorPrimary"
  16. app:chipStrokeWidth="0dp"
  17. app:layout_constraintBottom_toBottomOf="parent"
  18. app:layout_constraintEnd_toEndOf="parent"
  19. app:layout_constraintStart_toStartOf="parent"
  20. app:layout_constraintTop_toTopOf="parent" />
  21. </androidx.constraintlayout.widget.ConstraintLayout>