小编Rad*_*adu的帖子

BTLE(蓝牙低功耗)开发套件 - 必须具有接近配置文件

任何人都可以指向一个经过试验和测试的蓝牙低功耗开发套件(板)吗?

我对邻近配置文件以及与智能手机(尤其是iPhone和Android设备 - 以及任何其他具有BTLE的设备)的兼容性特别感兴趣.

另外,你能告诉我哪些智能手机会支持邻近配置文件吗?

android bluetooth proximity ios bluetooth-lowenergy

11
推荐指数
1
解决办法
1万
查看次数

无法将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());
Run Code Online (Sandbox Code Playgroud)

正如您所看到的,我设置了视图,并拼命尝试使其背景透明.

在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" />
Run Code Online (Sandbox Code Playgroud)

尽管如此,视图的父布局(相对布局)仍然具有灰色背景.(以前,我使用的是普通的活动类,在清单中我有一个透明的主题 - 最重要的部分是将这个android:windowBackground设置为透明 - 我必须更改它的原因不同).

任何帮助表示赞赏.

android background transparent android-mapview

7
推荐指数
2
解决办法
2万
查看次数