I can not able to change the background of the selected MaterialButton.
<com.google.android.material.button.MaterialButtonToggleGroup
android:id="@+id/toggleButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:singleSelection="true"
app:selectionRequired="true"
app:checkedButton="@+id/toggleButtonFolder">
<com.google.android.material.button.MaterialButton
android:id="@+id/toggleButtonFolder"
style="?attr/materialButtonOutlinedStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:shapeAppearance="@style/ToggleButton.Rounded"
android:text="Folders" />
<com.google.android.material.button.MaterialButton
android:id="@+id/toggleButtonRecent"
style="?attr/materialButtonOutlinedStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:shapeAppearance="@style/ToggleButton.Rounded"
android:text="Recent" />
</com.google.android.material.button.MaterialButtonToggleGroup>
style ToggleButton.Rounded:
<style name="ToggleButton.Rounded" parent="ShapeAppearance.MaterialComponents.SmallComponent">
<item name="cornerFamily">rounded</item>
<item name="cornerSize">16dp</item>
</style>
result of the code is:
What I want to acheive: