通用Dialog

public class IOSRecyclerViewDialog{
private Context context;
private Dialog dialog;
private LinearLayout lLayout_bg;
private TextView txt_title;
private TextView txt_msg;
private Button btn_neg;
private Button btn_pos;
//private ImageView img_line;
private Display display;
private boolean showTitle = false;
private boolean showMsg = false;
private boolean showPosBtn = false;
private boolean showNegBtn = false;
private View view;
private FrameLayout frameLayout; public IOSRecyclerViewDialog(Context context) {
this.context = context;
WindowManager windowManager = (WindowManager) context
.getSystemService(Context.WINDOW_SERVICE);
display = windowManager.getDefaultDisplay();
} public IOSRecyclerViewDialog builder() {
view = LayoutInflater.from(context).inflate(R.layout.dialog_recycler_view, null);
lLayout_bg = (LinearLayout) view.findViewById(R.id.lLayout_bg);
txt_title = (TextView) view.findViewById(R.id.txt_title);
txt_title.setVisibility(View.GONE);
txt_msg = (TextView) view.findViewById(R.id.txt_msg);
txt_msg.setVisibility(View.GONE);
btn_neg = (Button) view.findViewById(R.id.btn_neg);
btn_neg.setVisibility(View.GONE);
btn_pos = (Button) view.findViewById(R.id.btn_pos);
btn_pos.setVisibility(View.GONE); frameLayout = (FrameLayout) view.findViewById(R.id.customPanel); // ????Dialog????????
dialog = new Dialog(context, R.style.AlertDialogStyle);
dialog.setContentView(view);
dialog.setCancelable(false);
// ????dialog????????
lLayout_bg.setLayoutParams(new FrameLayout.LayoutParams((int) (display
.getWidth() * 0.85), LayoutParams.WRAP_CONTENT)); return this;
} public IOSRecyclerViewDialog setCustomView(View v, LayoutParams params){
if (frameLayout.getChildCount() > )
frameLayout.removeAllViews(); txt_msg.setVisibility(View.GONE);
frameLayout.addView(v, params);
return this;
} public IOSRecyclerViewDialog setTitle(String title) {
showTitle = true;
if ("".equals(title)) {
txt_title.setText("????");
} else {
txt_title.setText(title);
}
return this;
} public IOSRecyclerViewDialog setMsg(String msg) {
frameLayout.setVisibility(View.GONE);
showMsg = true;
if ("".equals(msg)) {
txt_msg.setText("????");
} else {
txt_msg.setText(msg);
}
return this;
} public IOSRecyclerViewDialog setCancelable(boolean cancel) {
dialog.setCancelable(cancel);
return this;
} public IOSRecyclerViewDialog setCanceledOnTouchOutside(boolean cancel) {
dialog.setCanceledOnTouchOutside(cancel);
return this;
} public IOSRecyclerViewDialog setPositiveButton(String text,
final View.OnClickListener listener) {
showPosBtn = true;
if ("".equals(text)) {
btn_pos.setText("???");
} else {
btn_pos.setText(text);
}
btn_pos.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (listener != null)
listener.onClick(v);
dialog.dismiss();
}
});
return this;
} public IOSRecyclerViewDialog setNegativeButton(String text,
final View.OnClickListener listener) {
showNegBtn = true;
if ("".equals(text)) {
btn_neg.setText("???");
} else {
btn_neg.setText(text);
}
btn_neg.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (listener != null)
listener.onClick(v);
dialog.dismiss();
}
});
return this;
} private void setLayout() {
if (!showTitle && !showMsg) {
txt_title.setText("???");
txt_title.setVisibility(View.VISIBLE);
} if (showTitle) {
txt_title.setVisibility(View.VISIBLE);
} if (!showPosBtn && !showNegBtn) {
btn_pos.setText("???");
btn_pos.setVisibility(View.VISIBLE);
//btn_pos.setBackgroundResource(R.drawable.alertdialog_single_selector);
btn_pos.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
dialog.dismiss();
}
});
} if (showPosBtn && showNegBtn) {
btn_pos.setVisibility(View.VISIBLE);
//btn_pos.setBackgroundResource(R.drawable.alertdialog_right_selector);
btn_neg.setVisibility(View.VISIBLE);
//btn_neg.setBackgroundResource(R.drawable.alertdialog_left_selector);
//img_line.setVisibility(View.VISIBLE);
} if (showPosBtn && !showNegBtn) {
btn_pos.setVisibility(View.VISIBLE);
//btn_pos.setBackgroundResource(R.drawable.alertdialog_single_selector);
} if (!showPosBtn && showNegBtn) {
btn_neg.setVisibility(View.VISIBLE);
//btn_neg.setBackgroundResource(R.drawable.alertdialog_single_selector);
}
} public void show() {
setLayout();
dialog.show();
}
}

其中用到的资源文件 dialog_recycler_view.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/lLayout_bg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/alert_bg"
android:orientation="vertical" > <TextView
android:id="@+id/txt_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="30px"
android:gravity="center"
android:textColor="@android:color/black"
android:textSize="50px"
android:textStyle="bold" /> <TextView
android:id="@+id/txt_msg"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:layout_marginTop="15dp"
android:gravity="center"
android:textColor="@android:color/black"
android:textSize="16sp" /> <FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/customPanel"/> <ImageView
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:background="@color/alertdialog_line" /> <LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingBottom="20px"> <!--<Button-->
<!--android:id="@+id/btn_neg"-->
<!--android:layout_width="wrap_content"-->
<!--android:layout_height="43dp"-->
<!--android:layout_weight=""-->
<!--android:background="@drawable/alertdialog_left_selector"-->
<!--android:gravity="center"-->
<!--android:textColor="@color/actionsheet_blue"-->
<!--android:textSize="16sp" />--> <!--<ImageView-->
<!--android:id="@+id/img_line"-->
<!--android:layout_width="0.5dp"-->
<!--android:layout_height="43dp"-->
<!--android:background="@color/alertdialog_line" />--> <!--<Button-->
<!--android:id="@+id/btn_pos"-->
<!--android:layout_width="wrap_content"-->
<!--android:layout_height="43dp"-->
<!--android:layout_weight=""-->
<!--android:background="@drawable/alertdialog_right_selector"-->
<!--android:gravity="center"-->
<!--android:textColor="@color/actionsheet_blue"-->
<!--android:textSize="16sp"-->
<!--/>--> <Button
android:layout_width="wrap_content"
android:layout_height="120px"
android:layout_marginTop="90px"
android:layout_weight=""
android:gravity="center"
android:layout_marginLeft="60px"
android:layout_marginRight="60px"
style="@style/text_white.58"
android:textColor="@color/colorPrimaryDark"
android:background="@drawable/regist_selector_bg"
android:text="@string/logingbutton"
android:id="@+id/btn_neg"
android:layout_below="@+id/forget_password"/>
<Button
android:layout_width="wrap_content"
android:layout_height="120px"
android:layout_marginTop="90px"
android:layout_weight=""
android:gravity="center"
style="@style/text_white.58"
android:layout_alignParentRight="true"
android:layout_marginRight="60px"
android:background="@drawable/btn_circle_seletor"
android:text="注册"
android:id="@+id/btn_pos"
android:layout_below="@+id/forget_password"/>
</LinearLayout> </LinearLayout> <style name="AlertDialogStyle" parent="@android:style/Theme.Dialog">
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowIsFloating">true</item>
<item name="android:windowFrame">@null</item>
<item name="android:backgroundDimEnabled">true</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsTranslucent">true</item>
</style>

使用

    RecyclerView recyclerView = new RecyclerView(this);
recyclerView.setLayoutManager(new LinearLayoutManager(this));
recyclerView.setHasFixedSize(true);
recyclerView.setAdapter(homeAdapter);
LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT,
homeAdapter.getItemCount() * Utils.getHeightInPx(this)/); new IOSRecyclerViewDialog(this).builder()
.setCancelable(false)
.setCanceledOnTouchOutside(false)
.setCustomView(recyclerView, lp)
.setTitle(selectedBrand.getName())
.setPositiveButton(getString(R.string.add_attention), v ->
presenter.saveData()
).setNegativeButton(getString(R.string.cancle), v -> {
presenter.getSelectedData().clear();
presenter.getSelectedData().addAll(originalAllSelected);
presenter.saveData();
})
.show();

Android 通用Dialog中设置RecyclerView的更多相关文章

  1. Android在代码中设置控件的drawableLeft,drawableRight,drawableTop,drawableBottom。

    根据业务的需要,要在代码中设置控件的drawableLeft,drawableRight,drawableTop,drawableBottom属性. 我们知道在xml中设置的方法为:android:d ...

  2. Android 一个TextView中设置多种不同大小的字体,设置超链接

    以前项目中要是遇到这样的UI设计,都是傻不拉唧的分为三个TextView来实现,今天在微信中无意中看了一篇公众号文章,发现原来只要一个TextView就可以搞定啦,人生最悲哀的事情莫过于工作了这么久啦 ...

  3. Android 在onActivityResult()中设置图片setImageResource(resId) 或者改变view属性,不成功的解决办法

    如果试验过的朋友就会发现,在onActivityResult()中设置这些属性,好像都不工作,虽然我死磕一番还是不知道具体原因,我直接默认它可能就是不能在里面设置,所以就只能在其他地方设置,幸好发现A ...

  4. Android:Dialog中隐藏键盘的注意事项

    场景:弹出一个Dialog.里面有一个EditText.用来输入内容.由于输入时.须要弹出键盘.所以当Dialog消失时.键盘要一起隐藏. 如今我们做一个自己定义的Dialog MyDialog ex ...

  5. android 在代码中设置字体颜色 问题

    项目中需要在代码中控制字体颜色 之前是直接引用资源文件  但是不行 tv.setTextColor(R.color.textColor_black); 无效果   后来在网上找了资料发现 要从reso ...

  6. Android 自定义Dialog中加EditText弹不出键盘跟Dialog遮挡键盘的问题

    先上两张图 第一张问题很明显,第二张是成功的图, 其实第一张是加了 //getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INP ...

  7. 【Android 界面效果47】RecyclerView详解

    RecylerView作为 support-library发布出来,这对开发者来说绝对是个好消息.因为可以在更低的Android版本上使用这个新视图.下面我们看如何获取 RecylerView.首先打 ...

  8. Android studio 安装中遇到一些问题的解决办法,分享一下

    从eclipse转到android studio也是很无耐,刚开始总是会遇到很多难题,但是都不要轻言放弃. 以下是我遇到的问题,并通过搜索引擎找到的解决办法,善用工具,善用头脑,勿为伸手之人. And ...

  9. 浅析Android Dialog中setContentView()方法

    2017-05-15 概述 Dialog在Android中是一个很优秀的工具.在使用Dialog时,我们一般都会自定义要显示的内容布局.Dialog自带了三个方法来支持自定义内容布局. public ...

随机推荐

  1. 关于swift 底部工具栏图标锯齿模糊问题。

    今天在底部工具栏添加图片时发现图片模糊而且有锯齿,开始一直以为是美工给的图片有问题,后来发现是要设置两种图片: 比如  index.png(默认30 * 30),indexSelected(选中后的图 ...

  2. Python——Numpy基础知识(一)

    一.Numpy的引入 1.标准的Python 中用列表(list)保存一组值,可以当作数组使用.但由于列表的元素可以是任何对象,因此列表中保存的是对象的指针.对于数值运算来说,这种结构显然比较浪费内存 ...

  3. [Cerc2007]robotic sort

    splay区间反转练手题 #include <iostream> #include <cstdio> #include <algorithm> using name ...

  4. Linux系统下打印第n行的方法

    方法一:cat cat filename | head -n 5 | tail -n +5 方法二:sed sed -n '5p' filename 扩展:打印第3~5行 cat filename | ...

  5. sublime常用插件总结 (立贴)

    bracket highlighter 使用这个插件 显示成对标签的位置 {} () [] html标签等的位置

  6. 第二次组队赛 二分&三分全场

    网址:CSUST 7月30日(二分和三分) 这次的比赛是二分&三分专题,说实话以前都没有接触过二分,就在比赛前听渊神略讲了下.......不过做着做着就对二分熟悉了,果然做题是学习的好方法啊~ ...

  7. 洛谷 P2144 BZOJ 1003 [FJOI2007]轮状病毒

    题目描述 轮状病毒有很多变种.许多轮状病毒都是由一个轮状基产生.一个n轮状基由圆环上n个不同的基原子和圆心的一个核原子构成.2个原子之间的边表示这2个原子之间的信息通道,如图1. n轮状病毒的产生规律 ...

  8. hdu 2089 数位dp入门题

    #include<stdio.h> //dp[i][0]代表不存在不吉利数字 //dp[i][1]代表不存在不吉利数字但是以2开头 //dp[i][2]代表存在不吉利数字 #define ...

  9. navicat 为表添加索引

    navicat 为表添加索引 分析常用的查询场景,为字段添加索引,增加查询速度. 可以添加单列索引,可以添加联合索引. 右键,设计表中可以查看和添加修改索引! 索引一定要根据常用的查询场景进行添加! ...

  10. 【JS】垃圾回收和块级作用域

    垃圾回收: JavaScript中,开发者不必关心内存分配和回收的问题.这和Java语言相似.有一个垃圾自己主动回收机制.那么JavaScript内部到底是如何回收垃圾的呢? 使用标记回收法:就是说. ...