2

我目前正在制作一个程序,该程序应该提示用户选择它想要连接的某个蓝牙设备。我通过选项菜单在我的代码中设置了它。

我希望它看起来像 BlueTerm 的弹出窗口。我实际上有来自 BlueTerm 的代码(因为它可以免费查看),但我无法弄清楚如何使窗口显示为弹出窗口而不是全屏视图。这是弹出窗口图片的链接:https: //play.google.com/store/apps/details?id=es.pymasde.blueterm&hl=en

它是在xml文件中完成的吗?因为我找不到我的 XML 文件与他们的文件有什么不同,这会导致这个错误。

  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  android:orientation="vertical" 
  android:layout_width="fill_parent" 
  android:layout_height="fill_parent">
  <TextView android:id="@+id/title_paired_devices" 
  android:layout_width="fill_parent" 
  android:layout_height="wrap_content" 
  android:text="@string/title_paired_devices" 
  android:visibility="gone" 
  android:background="#666" 
  android:textColor="#fff" 
  android:paddingLeft="5dp" /> 
  <ListView android:id="@+id/paired_devices" 
  android:layout_width="fill_parent"
   android:layout_height="wrap_content" 
   android:stackFromBottom="true" 
   android:layout_weight="1" /> 
  <TextView android:id="@+id/title_new_devices" android:layout_width="fill_parent"       android:layout_height="wrap_content" android:text="@string/title_other_devices" android:visibility="gone" android:background="#666" android:textColor="#fff" android:paddingLeft="5dp" /> 
  <ListView android:id="@+id/new_devices" android:layout_width="fill_parent" android:layout_height="wrap_content" android:stackFromBottom="true" android:layout_weight="2" /> 
  <Button android:id="@+id/button_scan" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/button_scan" /> 
  </LinearLayout>
4

1 回答 1

5

您必须在 AndroidManifest.xml 文件中将该活动的主题定义为 Theme.Dialog

例子:

<activity android:name="AleartMeassage" android:theme="@android:style/Theme.Dialog"></activity>
于 2012-06-13T18:55:13.187 回答