Android 프로 그래 밍 구현 대화 상자 Dialog 배경 투명 기능 예시
먼저 효과 보기:
이것 은 제 가 만 든 전화 걸 기 가 강 한 패 널 입 니 다.전 화 를 걸 때 핸드폰 의 연락 처 를 조회 하고 전화 걸 기 패 널 위 에 표시 되 며 투명 대화 상 자 를 누 르 면 선택 할 수 있 습 니 다.
이번 포 인 트 는 투명 대화 상자 입 니 다.
대화 상자 의 theme,style 파일 먼저 보기:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style
name="selectorDialog"
parent="@android:style/Theme.Dialog">
<item name="android:windowFrame">@null</item><!-- -->
<item name="android:windowIsFloating">true</item><!-- activity -->
<item name="android:windowIsTranslucent">false</item><!-- -->
<item name="android:windowNoTitle">true</item><!-- -->
<item name="android:windowBackground">@drawable/selector_dialog_bg</item><!-- -->
<item name="android:backgroundDimEnabled">false</item><!-- -->
<item name="android:backgroundDimAmount">0.6</item>
</style>
</resources>
대화 상자 배경@drawable/selectordialog_bg:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#333333"/>
<stroke
android:width="2dp"
android:color="#99CC33" />
<padding
android:left="5dp"
android:top="5dp"
android:right="5dp"
android:bottom="5dp" />
<corners android:radius="8dp" />
</shape>
다음 대화 상자 의 레이아웃:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<ListView
android:id="@+id/selector_dialog_listview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:cacheColorHint="#00000000"
android:scrollbars="none"
android:dividerHeight="1.0dip"
android:divider="#C4C4C4" />
</LinearLayout>
프로그램 중:
final View view = LayoutInflater.from(this).inflate(R.layout.selector_dialog, null);
selectorDialog = new Dialog(DialerActivity.this, R.style.selectorDialog);
selectorDialog.setContentView(view);
final BaseAdapter adapter = new SelectorAdapter(DialerActivity.this, selectorList);
ListView listView = (ListView) view.findViewById(R.id.selector_dialog_listview);
listView.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
//
}
});
listView.setAdapter(adapter);
selectorDialog.show();
selectorDialog.setCanceledOnTouchOutside(true);
WindowManager windowManager = getWindowManager();
Display display = windowManager.getDefaultDisplay();
WindowManager.LayoutParams lp = selectorDialog.getWindow().getAttributes();
lp.width = (int)(display.getWidth() * 0.9);
if(selectorList.size() > 7) {
lp.height = (int)(display.getHeight() * 0.9);
}
lp.alpha = 0.8f;
selectorDialog.getWindow().setAttributes(lp);
대화 상자 에 속성 을 설정 하 는 것 은WindowManager.LayoutParams
을 통 해 이 루어 집 니 다.더 많은 안 드 로 이 드 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있다.,,,,Android 개발 입문 및 진급 강좌,Android 디 버 깅 기법 과 일반적인 문제 해결 방법 을 모 았 습 니 다.,Android 기본 구성 요소 사용법 요약,Android 보기 기술 요약과Android 레이아웃 레이아웃 기법 요약
본 고 에서 말 한 것 이 여러분 의 안 드 로 이 드 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Bitrise에서 배포 어플리케이션 설정 테스트하기이 글은 Bitrise 광고 달력의 23일째 글입니다. 자체 또는 당사 등에서 Bitrise 구축 서비스를 사용합니다. 그나저나 며칠 전 Bitrise User Group Meetup #3에서 아래 슬라이드를 발표했...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.