Android Activity 作为对话框

发布于 2024-08-16 12:04:29 字数 162 浏览 7 评论 0原文

我有一个名为 whereActity 的活动,它也有子对话框。现在,我想将此活动显示为另一个活动的对话框。

我怎样才能做到这一点?

在此处输入图像描述

I have an Activity named whereActity which has child dialogs as well. Now, I want to display this activity as a dialog for another activity.

How can I do that?

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(10

天冷不及心凉 2024-08-23 12:04:30

1 - 您可以动态地使用相同的活动作为对话框和全屏:

在调用 setContentView(...) 之前调用 setTheme(android.R.style.Theme_Dialog)和 Activity 中的 super.oncreate()

2 - 如果您不打算更改可以使用的活动主题样式

<activity android:theme="@android:style/Theme.Dialog" />

(如@faisal khan所述)

1 - You can use the same activity as both dialog and full screen, dynamically:

Call setTheme(android.R.style.Theme_Dialog) before calling setContentView(...) and super.oncreate() in your Activity.

2 - If you don't plan to change the activity theme style you can use

<activity android:theme="@android:style/Theme.Dialog" />

(as mentioned by @faisal khan)

新一帅帅 2024-08-23 12:04:30

如果您的 Activity 将呈现为对话框,只需将一个按钮添加到您的 Activity 的 xml 中,

<Button
    android:id="@+id/close_button"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Dismiss" />

然后在您的 Activity 的 Java 代码中附加一个单击侦听器。在侦听器中,只需调用 finish()

Button close_button = (Button) findViewById(R.id.close_button);
close_button.setOnClickListener(new OnClickListener() {
    @Override
    public void onClick(View v) {
        finish();
    }
});

即可关闭对话框,返回到调用活动。

If your activity is being rendered as a dialog, simply add a button to your activity's xml,

<Button
    android:id="@+id/close_button"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Dismiss" />

Then attach a click listener in your Activity's Java code. In the listener, simply call finish()

Button close_button = (Button) findViewById(R.id.close_button);
close_button.setOnClickListener(new OnClickListener() {
    @Override
    public void onClick(View v) {
        finish();
    }
});

That should dismiss your dialog, returning you to the calling activity.

旧人九事 2024-08-23 12:04:30

如果您想删除活动标题和为对话框提供自定义视图,将以下内容添加到清单的活动块中

android:theme="@style/Base.Theme.AppCompat.Dialog"

,并使用所需的视图设计您的 Activity_layout

If you want to remove activity header & provide a custom view for the dialog add the following to the activity block of you manifest

android:theme="@style/Base.Theme.AppCompat.Dialog"

and design your activity_layout with your desired view

将活动创建为对话框,这是完整示例

在此处输入图像描述

  1. AndroidManife.xml

  2. DialogActivity.kt

    类 DialogActivity : AppCompatActivity() {
      覆盖 fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_dialog)
        this.setFinishOnTouchOutside(true)
    
        btnOk.setOnClickListener {
          结束()
        }
      }
    }
    
  3. activity_dialog.xml

    
    
    <线性布局
        android:layout_width="@dimen/_300sdp"
        安卓:layout_height =“wrap_content”
        机器人:重力=“中心”
        android:orientation="垂直">
    
        <文本视图
            android:id="@+id/txtTitle"
            样式=“@style/normal16Style”
            安卓:layout_width =“match_parent”
            安卓:layout_height =“wrap_content”
            机器人:重力=“中心”
            机器人:paddingTop =“20dp”
            机器人:paddingBottom =“20dp”
            android:text="下载"
            android:textColorHint="#FFF" //>
    
        <查看
            android:id="@+id/viewDivider"
            安卓:layout_width =“match_parent”
            安卓:layout_height =“2dp”
            安卓:背景=“#fff”
            android:backgroundTint="@color/white_90"
            应用程序:layout_constraintBottom_toBottomOf =“@id / txtTitle”/>
    
        <文本视图
            样式=“@style/normal14Style”
            安卓:layout_width =“match_parent”
            安卓:layout_height =“wrap_content”
            安卓:重力=“中心”
            机器人:paddingTop =“20dp”
            机器人:paddingBottom =“20dp”
            android:text="您的文件已下载"
            android:textColorHint="#FFF" //>
    
    
        <按钮
            android:id="@+id/btnOk"
            样式=“@style/normal12Style”
            机器人:layout_width =“100dp”
            安卓:layout_height =“40dp”
            机器人:layout_marginBottom =“20dp”
            android:background="@drawable/circle_corner_layout"
            安卓:文本=“好的”
            android:textAllCaps="false" />
        
    
      
    

Create activity as dialog, Here is Full Example

enter image description here

  1. AndroidManife.xml

    <activity android:name=".appview.settings.view.DialogActivity" android:excludeFromRecents="true" android:theme="@style/Theme.AppCompat.Dialog"/>

  2. DialogActivity.kt

    class DialogActivity : AppCompatActivity() {
      override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_dialog)
        this.setFinishOnTouchOutside(true)
    
        btnOk.setOnClickListener {
          finish()
        }
      }
    }
    
  3. activity_dialog.xml

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#0072ff"
    android:gravity="center"
    android:orientation="vertical">
    
    <LinearLayout
        android:layout_width="@dimen/_300sdp"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:orientation="vertical">
    
        <TextView
            android:id="@+id/txtTitle"
            style="@style/normal16Style"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:paddingTop="20dp"
            android:paddingBottom="20dp"
            android:text="Download"
            android:textColorHint="#FFF" />
    
        <View
            android:id="@+id/viewDivider"
            android:layout_width="match_parent"
            android:layout_height="2dp"
            android:background="#fff"
            android:backgroundTint="@color/white_90"
            app:layout_constraintBottom_toBottomOf="@id/txtTitle" />
    
        <TextView
            style="@style/normal14Style"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:paddingTop="20dp"
            android:paddingBottom="20dp"
            android:text="Your file is download"
            android:textColorHint="#FFF" />
    
    
        <Button
            android:id="@+id/btnOk"
            style="@style/normal12Style"
            android:layout_width="100dp"
            android:layout_height="40dp"
            android:layout_marginBottom="20dp"
            android:background="@drawable/circle_corner_layout"
            android:text="Ok"
            android:textAllCaps="false" />
        </LinearLayout>
    
      </LinearLayout>
    
々眼睛长脚气 2024-08-23 12:04:30

在 Android 清单文件中设置主题。

<activity android:name=".LoginActivity"
            android:theme="@android:style/Theme.Dialog"/>

并设置触摸时的对话框状态以完成。

this.setFinishOnTouchOutside(false);

Set the theme in your android manifest file.

<activity android:name=".LoginActivity"
            android:theme="@android:style/Theme.Dialog"/>

And set the dialog state on touch to finish.

this.setFinishOnTouchOutside(false);
毁梦 2024-08-23 12:04:30

有时您可能会收到下面给出的异常

由以下原因引起:java.lang.IllegalStateException:您需要在此活动中使用 Theme.AppCompat 主题(或后代)。

因此,为了解决问题,您可以使用简单的解决方案

将您的活动主题添加到清单中作为 appCompact 的对话框。

android:theme="@style/Theme.AppCompat.Dialog"

它可能对某人有帮助。

Some times you can get the Exception which is given below

Caused by: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.

So for resolving you can use simple solution

add theme of you activity in manifest as dialog for appCompact.

android:theme="@style/Theme.AppCompat.Dialog"

It can be helpful for somebody.

澉约 2024-08-23 12:04:29

要将 Activity 作为对话框启动,我在 AndroidManifest.xml 中将其定义为:

<activity android:theme="@android:style/Theme.Dialog" />

activity 标记内使用此属性,以避免您的对话框出现在最近使用的应用程序列表中

android:excludeFromRecents="true"

如果您当用户在对话框外部单击时,想要阻止您的对话框/活动被破坏:

Activity 使用 setContentView() 之后:

this.setFinishOnTouchOutside(false) );

现在,当我调用 startActivity() 时,它会显示为一个对话框,当用户按下后退按钮时,会显示上一个活动。

请注意,如果您使用 ActionBarActivity (或 AppCompat 主题),则需要使用 @style/Theme.AppCompat.Dialog 代替。

To start activity as dialog I defined it like this in AndroidManifest.xml:

<activity android:theme="@android:style/Theme.Dialog" />

Use this property inside your activity tag to avoid that your Dialog appears in the recently used apps list

android:excludeFromRecents="true"

If you want to stop your dialog / activity from being destroyed when the user clicks outside of the dialog:

After setContentView() in your Activity use:

this.setFinishOnTouchOutside(false);

Now when I call startActivity() it displays as a dialog, with the previous activity shown when the user presses the back button.

Note that if you are using ActionBarActivity (or AppCompat theme), you'll need to use @style/Theme.AppCompat.Dialog instead.

聽兲甴掵 2024-08-23 12:04:29

使用此代码,以便当用户触摸对话框外部时对话框活动不会关闭:

this.setFinishOnTouchOutside(false);

需要 API 级别 11

Use this code so that the dialog activity won't be closed when the user touches outside the dialog box:

this.setFinishOnTouchOutside(false);

requires API level 11

戏蝶舞 2024-08-23 12:04:29

您可以在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">

You can define this style in values/styles.xml to perform a more former 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>

And use it AndroidManifest.xml:

   <activity android:name=".SplashActivity"
          android:configChanges="orientation"
          android:screenOrientation="sensor"
          android:theme="@style/Theme.UserDialog">
半世蒼涼 2024-08-23 12:04:29

如果您需要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>

If you need Appcompat Version

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>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文