Music Genre
Download MaterialX 2.8
Get the Full Android Source Code for all the listed Layouts and more.
Buy Now for $25Layout Screenshot

package com.material.components.activity.player;
import android.os.Bundle;
import androidx.appcompat.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import com.material.components.R;
import com.material.components.utils.Tools;
public class PlayerMusicGenre extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_player_music_genre);
Tools.setSystemBarColor(this, R.color.indigo_600);
}
public void genreClick(View view) {
if (view instanceof Button) {
Button b = (Button) view;
b.setSelected(!b.isSelected());
}
}
}