android popupwindow 自定义背景,android – 无法将PopupWindow背景设置为透明
我有以下代碼:
View child = getLayoutInflater().inflate(R.layout.contextual_menu_lp_activity,null)
child.setBackgroundColor(getResources().getColor(R.color.transparent));
child.setBackgroundDrawable(new BitmapDrawable());
popup = new PopupWindow(MapViewActivity.this);
popup.setContentView(child);
popup.showAtLocation(MapViewActivity.mapView,Gravity.CENTER,10,10);
popup.setBackgroundDrawable(new BitmapDrawable());
child.measure(View.MeasureSpec.UNSPECIFIED,View.MeasureSpec.UNSPECIFIED);
popup.update(50,50,child.getMeasuredWidth(),child.getMeasuredHeight());
正如您所看到的,我設置了視圖,并拼命嘗試使其背景透明.
在xml布局上,所有相對布局都被賦予透明的顏色背景.
這是xml:
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/transparent" >
android:id="@+id/ivDialogPopup"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:paddingBottom="40dp"
android:background="@drawable/new_pop_up_bk" >
android:id="@+id/btLivePolice"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@+id/btSaveParkingLocation"
android:layout_marginRight="4dp"
android:layout_marginTop="8dp"
android:background="@drawable/live_police_button_popup" />
android:id="@+id/btSaveParkingLocation"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginTop="8dp"
android:layout_centerHorizontal="true"
android:background="@drawable/parking_location_button" />
android:id="@+id/btGetDirections"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="4dp"
android:layout_marginTop="8dp"
android:layout_toRightOf="@+id/btSaveParkingLocation"
android:background="@drawable/directions_button" />
盡管如此,視圖的父布局(相對布局)仍然具有灰色背景.
(以前,我使用的是普通的活動類,在清單中我有一個透明的主題 – 最重要的部分是將這個android:windowBackground設置為透明 – 我必須更改它的原因不同).
任何幫助表示贊賞.
總結
以上是生活随笔為你收集整理的android popupwindow 自定义背景,android – 无法将PopupWindow背景设置为透明的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: android代码 根据黑名单拦截短信,
- 下一篇: android电视打印信息解析,液晶电视