Remove unnecessary selectable background
This commit is contained in:
parent
9e5232fca8
commit
0011085fb5
2 changed files with 6 additions and 0 deletions
|
@ -250,6 +250,9 @@ public class TrackColoringCard extends BaseCard implements ColorPickerListener {
|
|||
private void updateHeader() {
|
||||
AndroidUiHelper.updateVisibility(view.findViewById(R.id.icon), false);
|
||||
|
||||
View headerView = view.findViewById(R.id.header_view);
|
||||
headerView.setBackgroundDrawable(null);
|
||||
|
||||
TextView titleView = view.findViewById(R.id.title);
|
||||
titleView.setText(R.string.select_color);
|
||||
|
||||
|
|
|
@ -99,6 +99,9 @@ public class TrackWidthCard extends BaseCard {
|
|||
private void updateHeader() {
|
||||
AndroidUiHelper.updateVisibility(view.findViewById(R.id.icon), false);
|
||||
|
||||
View headerView = view.findViewById(R.id.header_view);
|
||||
headerView.setBackgroundDrawable(null);
|
||||
|
||||
TextView titleView = view.findViewById(R.id.title);
|
||||
titleView.setText(R.string.select_track_width);
|
||||
|
||||
|
|
Loading…
Reference in a new issue