Android 프로 그래 밍 구현 대화 상자 Dialog 배경 투명 기능 예시

이 사례 는 안 드 로 이 드 프로 그래 밍 이 대화 상자 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 레이아웃 레이아웃 기법 요약
본 고 에서 말 한 것 이 여러분 의 안 드 로 이 드 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기