16
배경색이있는 버튼의 재료 효과
Android v21 지원 라이브러리를 사용하고 있습니다. 사용자 정의 배경색으로 버튼을 만들었습니다. 배경색을 사용하면 잔물결, 노출과 같은 재질 디자인 효과가 사라집니다 (클릭시 표고 제외). <Button style="?android:attr/buttonStyleSmall" android:background="?attr/colorPrimary" android:textColor="@color/white" android:textAllCaps="true" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Button1" /> 다음은 일반 버튼이며 효과가 제대로 작동합니다. <Button style="?android:attr/buttonStyleSmall" android:layout_width="fill_parent" android:layout_height="wrap_content" android:textAllCaps="true" android:text="Button1" />