Created
July 7, 2021 06:45
-
-
Save carolinemusyoka/3f897103236740a23bc8583b6499b019 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
<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