<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="xyz" />
<EditText
android:id="@+id/editText1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</LinearLayout>
我有一个如上所述的XML布局,当我点击那个xyz按钮时,我想启动我的应用程序&#34; Sample App&#34;这将显示一个对话框。 我启用了#34;对讲&#34;设置中的应用程序 - &gt;辅助功能。 然后,一旦我点击xyz按钮,对讲应用就会说&#34;警告..&#34;但它没有说&#34;警告+对话标题&#34;。 但是,如果我在我的应用程序中启动一个对话框,那么它会正确地说出对话框标题。
答案 0 :(得分:0)
在清单中声明您的活动,如..
<activity
android:name=".ActivityName"
android:theme="@android:style/Theme.Dialog" >