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"))); Але нічого з вищезазначеного не спрацювало. Я також спробував рішення у запропонованому дублікаті …