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"))); लेकिन …