24
Android меняет цвет кнопки плавающего действия
Я пытался изменить цвет кнопки плавающего действия материала, но безуспешно. <android.support.design.widget.FloatingActionButton android:id="@+id/profile_edit_fab" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="end|bottom" android:layout_margin="16dp" android:clickable="true" android:src="@drawable/ic_mode_edit_white_24dp" /> Я попытался добавить: android:background="@color/mycolor" или через код: FloatingActionButton fab = (FloatingActionButton) rootView.findViewById(R.id.profile_edit_fab); fab.setBackgroundColor(Color.parseColor("#mycolor")); или fab.setBackgroundDrawable(new ColorDrawable(Color.parseColor("#mycolor"))); Но ничего из вышеперечисленного не сработало. Я также попробовал решения в предложенном дублирующем вопросе, но …