我有一个名为whereactivity的活动,它也有子对话框。现在,我想将这个活动显示为另一个活动的对话框。
我该怎么做呢?
我有一个名为whereactivity的活动,它也有子对话框。现在,我想将这个活动显示为另一个活动的对话框。
我该怎么做呢?
当前回答
有时候你可以得到下面给出的异常
导致:java.lang.IllegalStateException:你需要使用一个主题。AppCompat主题(或后代)。
所以你可以用简单的方法来解决
在manifest中为appCompact添加活动主题。
android:theme="@style/Theme.AppCompat.Dialog"
它对某些人是有帮助的。
其他回答
要以对话框的形式启动activity,我在AndroidManifest.xml中这样定义:
<activity android:theme="@android:style/Theme.Dialog" />
在activity标签中使用这个属性可以避免你的对话框出现在最近使用的应用列表中
android:excludeFromRecents="true"
如果你想阻止你的对话框/活动在用户点击对话框外时被破坏:
在setContentView()在你的活动使用:
this.setFinishOnTouchOutside(假);
现在,当我调用startActivity()时,它显示为一个对话框,当用户按下返回按钮时显示上一个活动。
注意,如果你正在使用ActionBarActivity(或AppCompat主题),你需要使用@style/ theme .AppCompat。对话框。
1 -你可以动态地使用与对话框和全屏相同的活动:
在Activity中调用setContentView(…)和super.oncreate()之前调用setTheme(android.R.style.Theme_Dialog)。
2 -如果你不打算改变活动主题风格,你可以使用
<activity android:theme="@android:style/Theme.Dialog" />
(正如@faisal khan所提到的)
如果你需要Appcompat版本
style.xml
<!-- Base application theme. -->
<style name="AppDialogTheme" parent="Theme.AppCompat.Light.Dialog">
<!-- Customize your theme here. -->
<item name="windowActionBar">false</item>
<item name="android:windowNoTitle">true</item>
</style>
yourmanifest.xml
<activity
android:name=".MyActivity"
android:label="@string/title"
android:theme="@style/AppDialogTheme">
</activity>
有时候你可以得到下面给出的异常
导致:java.lang.IllegalStateException:你需要使用一个主题。AppCompat主题(或后代)。
所以你可以用简单的方法来解决
在manifest中为appCompact添加活动主题。
android:theme="@style/Theme.AppCompat.Dialog"
它对某些人是有帮助的。
你可以在values/styles.xml中定义这个样式来执行更像以前的Splash:
<style name="Theme.UserDialog" parent="android:style/Theme.Dialog">
<item name="android:windowFrame">@null</item>
<item name="android:windowIsFloating">true</item>
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowNoTitle">true</item>
<item name="android:background">@android:color/transparent</item>
<item name="android:windowBackground">@drawable/trans</item>
</style>
然后使用AndroidManifest.xml:
<activity android:name=".SplashActivity"
android:configChanges="orientation"
android:screenOrientation="sensor"
android:theme="@style/Theme.UserDialog">