1. Activity 투명 설정
- 'AndroidManifest.xml'
=> android:theme="@android:style/Theme.Translucent"
2. Button & ETC Control 투명 설정
ex)
Button = (Button)findViewById(R.id.button);
Drawable alpha = Button.getBackground();
alpha.setAlpha(50);
반응형
'Program > Android Java' 카테고리의 다른 글
[Thread] - AsyncTask (0) | 2011.04.15 |
---|---|
screenOrientation / Rotation (0) | 2011.04.15 |
Android 무료 게임 엔진 사용 - Rokon (0) | 2011.04.14 |
"구글번역(Google Translate) API"를 이용한 번역 (0) | 2011.04.14 |
Android 기본 Tab 기능 (0) | 2011.04.14 |