Tôi đã cố gắng thay đổi màu Nút hành động nổi của Vật liệu, nhưng không thành công.
<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" />
Tôi đã cố gắng thêm:
android:background="@color/mycolor"
hoặc thông qua mã:
FloatingActionButton fab = (FloatingActionButton) rootView.findViewById(R.id.profile_edit_fab);
fab.setBackgroundColor(Color.parseColor("#mycolor"));
hoặc là
fab.setBackgroundDrawable(new ColorDrawable(Color.parseColor("#mycolor")));
Nhưng không ai trong số trên làm việc. Tôi cũng đã thử các giải pháp trong câu hỏi trùng lặp được đề xuất, nhưng không có giải pháp nào trong số đó hoạt động; nút vẫn xanh và cũng trở thành một hình vuông.
Tái bút: Thật tuyệt khi biết cách thêm hiệu ứng gợn, cũng không thể hiểu điều đó.