2

現在、接続したい特定のBluetoothデバイスを選択するようにユーザーに促すプログラムを作成しています。オプションメニューからコードに設定しました。

私が望むのは、BlueTerm のポップアップ ウィンドウです。私は実際にBlueTermのコードを持っています(自由に見ることができるため)が、ウィンドウを全画面表示ではなくポップアップとして表示する方法がわかりません。これは、ポップアップ ウィンドウの画像へのリンクです: https://play.google.com/store/apps/details?id=es.pymasde.blueterm&hl=en

それはxmlファイルで行われますか?このエラーの原因となる 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 に答える