首页 > TAG信息列表 > DialogFragment

短视频直播源码,DialogFragment全屏且半透明

短视频直播源码,DialogFragment全屏且半透明 DialogFragment基本使用:   TestDialogFragment dialogFragment = new TestDialogFragment();dialogFragment.show(getSupportFragmentManager(), "test"); ​ 默认唤起的DialogFragment不全屏,四周有边距。可通过setStyle实现全屏且透明

Android入门教程 | DialogFragment 的使用

弹窗,是常见的一种提示方式。 DialogFragment是在3.0时引入的,是一种特殊的 Fragment,用于在 Activity 上展示一个模态的对话框。 DialogFragment 示例 确定UI样式 首先我们得知道做成什么样。一般来说简单的弹窗是一个标题,一端文字内容。 或者带有一两个按钮。 这里我们做一个有标

全屏DialogFragment

全屏的dialog,并且还有弹出关闭动画,从底部弹出 class MyDialogFragment : DialogFragment() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) //设置无标题,无背景色 setStyle(STYLE_NO_TITLE, R.s

DialogFragment 详解

相关链接: https://www.jianshu.com/p/1e79d1f9a747 https://www.cnblogs.com/guanxinjing/p/12044196.html (超棒)   小结: DialogFragment 的创建是为了弥补原声dialog,  alertDialog, popuplog的问题; ps: 原来存在的问题有: (1) 横竖屏切换的时候, dialog会被关闭;  (2) 生

Navigation DialogFragment展示dialog

如果按照一般fragment的写法: 在nav_config中 <fragment android:id="@+id/fragment_crime_detail" android:name="com.example.criminalintent.CrimeFragment"> <action android:id="@+id/to_fragment_dialog&q

Can not perform this action after onSaveInstanceState 问题的原因与解决

我出现这个问题的原因就是,在当前Acitivity 操作的过程中 跳到另外一个界面做了一些操作然后返回并带了一些参数,再在当前Activity 显示DialogFrament 展示带过来的参数,此时崩溃出现了这个错误信息  IllegalStateException: Can not perform this action after onSaveInstanceSta

java-具有多个活动的DialogFragment

我使用documentation here创建一个dialogfragment.代码是: public static MyAlertDialogFragment newInstance(int title) { MyAlertDialogFragment frag = new MyAlertDialogFragment(); Bundle args = new Bundle(); args.putInt("title", title); frag.se

Android:从DialogFragment调用Activity的功能

我在从DialogFragment调用我的Activity函数时遇到问题.我的MainActivity中有一些公共函数,我需要调用这些函数才能在DialogFragment中完成一些计算.每次我尝试使用getActivity()调用函数时.出现问题“无法解决方法”. 这是我在MainActivity中调用DialogFragment的方式: FragmentMan

android – BottomSheetDialogFragment – 听取用户事件解雇

我如何听取最终解雇BottomSheetDialogFragment?我想在最终解雇时保存用户更改… 我试过以下: 方法1 如果通过向下滑动对话框解除对话(不在背面按压或外面触摸),则仅触发此操作 @Override public Dialog onCreateDialog(Bundle savedInstanceState) { Dialog d = super.onCreateD

android – DialogFragment onClick监听器不能与ImageButton一起使用

我想我尝试了这里提供的所有内容.我的活动中有ImageButton,我无法将其设置为切换到另一个活动(Log.d显示它甚至没有被点击). 这是我的对话: public class StarsActivity extends DialogFragment implements OnClickListener { Dialog dialog; Activity mActivity;

android – 从扩展RecyclerView.ViewHolder的类开始DialogFragment

我在recyelerview.viewholder类的onClick()方法中尝试了如下. 示例中使用的SampleDialogFragment扩展了DialogFragment. @Override public void onClick(View v) { SampleDialogFragment df= new SampleDialogFragment(); df.show(v.getContext().getSupportFragmentManager(), "D

Android DatePickerDialog和TimePickerDialog显示样式

可以用DatePickerDialog显示选取日期的对话框。可以设置显示的样式   1、通过构造方法设置显示样式。   可以通过DatePickerDialog(Context context, int theme, DatePickerDialog.OnDateSetListener callBack, int year, int monthOfYear, int dayOfMonth)这个构造方法的第

android – 如何设置FragmentDialog大小以包装到ListView

我有RecyclerView,当我长时间点击其中一个项目FragmentDialog时出现自定义布局:| @ text |.问题是Fragment Dialog不会将区域仅包含在那两个元素中,而是占据几乎整个屏幕的位置.即使我设置布局以包装内容,问题仍然出现.这是问题所在: 这是RecyclerView custom_item XML: <?xml versi

java – Android摆脱了DialogFragment浮动边距

我在我的应用程序中显示了一个对话碎片,我注意到即使我将碎片的y位置设置到屏幕的底部,仍然可以看到边距: Display display = getActivity().getWindowManager().getDefaultDisplay(); Point size = new Point(); display.getSize(size); windowPa

DialogFragment 对话框 碎片

package com.example.m_evolution;import android.app.Dialog;import android.app.DialogFragment;import android.media.MediaPlayer;import android.os.Bundle;import android.os.Handler;import android.support.annotation.NonNull;import android.support.v7.app.AlertDi

Android的对话框DialogFragment指定弹窗口大小,设置圆角

@Override public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) { getDialog().getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));//1.必须设置dialog的wi