gpt4 book ai didi

android - 无法将 PopupWindow 背景设置为透明

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:09:02 28 4
gpt4 key购买 nike

我有以下代码:

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());

如您所见,我设置了 View ,并拼命尝试使其背景透明。

在xml布局上,所有相关布局都被赋予透明色背景。

这是 xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
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" >

<RelativeLayout
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" >

<Button
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" />

<Button
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" />

<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" />

不过, View 的父布局(相对布局)仍然具有灰色背景。(以前,我使用的是普通 Activity 类,在 list 中我有一个透明主题 - 其中最重要的部分是将此 android:windowBackground 设置为透明 - 我必须出于不同原因更改它)。

感谢任何帮助。

最佳答案

您也可以像下面这样设置背景透明。这对我有用。

popup.setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));

关于android - 无法将 PopupWindow 背景设置为透明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13957250/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com