Skip to content

Instantly share code, notes, and snippets.

@carolinemusyoka
Created July 7, 2021 06:45
Show Gist options
  • Save carolinemusyoka/3f897103236740a23bc8583b6499b019 to your computer and use it in GitHub Desktop.
Save carolinemusyoka/3f897103236740a23bc8583b6499b019 to your computer and use it in GitHub Desktop.
<com.google.android.material.chip.ChipGroup
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="15dp"
app:singleLine="true"
android:id="@+id/chip_group"
app:singleSelection="true">
<!-- app:checkedChip="@id/yes"-->
<com.google.android.material.chip.Chip
android:id="@+id/yes"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/yes"
style="@style/checkable_chip"
/>
<com.google.android.material.chip.Chip
android:id="@+id/no"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/no"
style="@style/checkable_chip" />
</com.google.android.material.chip.ChipGroup>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment