24
Android thay đổi màu nút hành động nổi
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 …