프로그래밍 언어/Android

투명한 ImageButton을 만드는 방법 : Android

Rateye 2021. 6. 17. 21:14
728x90
반응형
질문 : 투명한 ImageButton을 만드는 방법 : Android

<ImageButton android:id="@+id/previous"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/media_skip_backward"
android:background="@drawable/transparent"></ImageButton>

이것이 SurfaceView에 해당 버튼을 배치하기 위해 투명한 ImageButton을 얻으려고 시도한 것입니다. 그러나 Eclipse는 xml에 투명한 줄을 포함하자마자 프로젝트에서 오류를 발생시킵니다.

도와주세요.

답변

배경에 null을 사용해보십시오 ...

android:background="@null"
출처 : https://stackoverflow.com/questions/3402787/how-to-have-a-transparent-imagebutton-android
728x90
반응형