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"))); 그러나 위의 어느 것도 효과가 없었습니다. 또한 제안 된 중복 질문에서 해결책을 시도했지만 그중 아무것도 …