Android开发小知识2—弹窗

前言

弹窗是指打开网页、软件、手机APP等的时候自动弹出的窗口,目前主要流行的弹出方式是快速进入网页游戏的快捷途径。 在android弹窗是非常常见与实用的控件,相信很多朋友都使用过弹窗。这篇文章想和大家分享一下弹窗的相关知识。


弹窗的分类和区别

弹窗分为模态弹窗和非模态弹窗两种,这两者最主要的区别在于需不需要用户对其进行回应。模态弹窗会打断用户的正常操作,要求用户必须对其进行回应,否则不能继续其它操作行为,比如说:Dialog;非模态弹窗则不会影响用户的操作,用户可以不对其进行回应,非模态弹窗通常都有时间限制,出现一段时间后就会自动消失,比如说:Toast。

弹窗分类

根据模态弹窗和非模态弹窗的区别,当只是需要告知用户信息,不需要用户操作,一般设计为非模态弹窗;需要用户进行一定的操作时我们使用模态弹窗。


仿IOS 的Dialog

IOS和Android在弹窗方面有一些不同,但是在实际开发中,设计者往往偏向于IOS的弹窗设计。所以,对于Android开发者,势必要学习几种常见的仿IOS弹窗。这里给大家介绍一种的仿IOS的Dialog。

布局文件,在这了可以修改dialog的式样。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ImageView
        android:id="@+id/background_image"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/transparent_half"
        android:scaleType="fitXY" />

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:layout_marginLeft="@dimen/margin40"
        android:layout_marginRight="@dimen/margin40"
        android:background="@drawable/shape_frame_gray_background_white">

        <TextView
            android:id="@+id/dialog_title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_marginEnd="@dimen/margin10"
            android:layout_marginStart="@dimen/margin10"
            android:layout_marginTop="@dimen/margin20"
            android:gravity="center"
            android:textColor="@color/dark_gray"
            android:textSize="@dimen/text_size17"
            tools:text="Logout" />

        <TextView
            android:id="@+id/dialog_content"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/dialog_title"
            android:layout_centerHorizontal="true"
            android:layout_marginBottom="@dimen/margin30"
            android:layout_marginEnd="@dimen/margin10"
            android:layout_marginStart="@dimen/margin10"
            android:layout_marginTop="@dimen/margin30"
            android:gravity="center"
            android:textColor="@color/dark_gray"
            android:textSize="@dimen/text_size13"
            tools:text="Are you sure you want to log out?" />

        <View
            android:id="@+id/line_transverse"
            android:layout_width="match_parent"
            android:layout_height="@dimen/height1"
            android:layout_below="@+id/dialog_content"
            android:background="@color/gray_dialog" />

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@+id/line_transverse">

            <Button
                android:id="@+id/right_button"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentEnd="true"
                android:layout_toEndOf="@+id/line_vertical"
                android:background="@color/transparent"
                android:text="@string/dialog_yes"
                android:textAllCaps="false"
                android:textColor="@color/blue"
                android:textSize="@dimen/text_size17" />

            <View
                android:id="@+id/line_vertical"
                android:layout_width="@dimen/height1"
                android:layout_height="@dimen/layout_height54"
                android:layout_centerInParent="true"
                android:background="@color/gray_dialog" />

            <Button
                android:id="@+id/left_button"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_toStartOf="@+id/line_vertical"
                android:background="@color/transparent"
                android:text="@string/dialog_no"
                android:textAllCaps="false"
                android:textColor="@color/blue"
                android:textSize="@dimen/text_size17" />
        </RelativeLayout>
    </RelativeLayout>
</RelativeLayout>

在IOS中,背景模糊是非常常见的。想要达到这一目的,最常见的做法是对此页面进行切图,在对图片进行模糊。操作实在麻烦,因此我使用了半透明颜色来代替。当然,如果需求确实需要,也可以做比较复杂的操作。

<color name="transparent_half">#d9ffffff</color>

边缘灰色线的shapeshape_frame_gray_background_white如下:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
  <corners android:radius="@dimen/radius" />
  <solid android:color="@color/white" />

  <stroke
      android:width="1dp"
      android:color="@color/gray_hint" />
</shape>

布局已经Ok,定义仿IOS的dialog文件如下:

public class LikeIosDialog extends Dialog {

  public LikeIosDialog(Context context, int theme) {
      super(context, theme);
  }

  public void onDismiss() {
      if (isShowing()) {
          dismiss();
      }
  }

  public static class Builder {
      private Button leftButton;
      private Button rightButton;
      private TextView dialogTitle;
      private TextView dialogContent;
      private View lineVertical;

      private String message;
      private String title;
      private String leftButtonText;
      private String rightButtonText;
      private View.OnClickListener leftButtonClickListener;
      private View.OnClickListener rightButtonClickListener;
      private boolean isSingle = false;

      private View layout;
      private LikeIosDialog dialog;

      public Builder(Context context) {
          dialog = new LikeIosDialog(context, R.style.Dialog);
          LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
          layout = inflater.inflate(R.layout.layout_dialog, null);
          dialog.addContentView(layout, new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT));
          dialog.setContentView(layout);
          dialog.setCancelable(true);
          dialog.setCanceledOnTouchOutside(false);
      }

      public LikeIosDialog createDialog() {
          initView();
          setText();
          setEvent();
          return dialog;
      }

      private void initView() {
          leftButton = (Button) layout.findViewById(R.id.left_button);
          rightButton = (Button) layout.findViewById(R.id.right_button);
          dialogContent = (TextView) layout.findViewById(R.id.dialog_content);
          dialogTitle = (TextView) layout.findViewById(R.id.dialog_title);
          lineVertical = layout.findViewById(R.id.line_vertical);
      }

      private void setText() {
          if (isSingle) {
              leftButton.setVisibility(View.GONE);
              lineVertical.setVisibility(View.GONE);
          } else {
              leftButton.setVisibility(View.VISIBLE);
              lineVertical.setVisibility(View.VISIBLE);
          }
          dialogContent.setText(message);
          leftButton.setText(leftButtonText);
          rightButton.setText(rightButtonText);
          dialogTitle.setText(title);
      }

      private void setEvent() {
          leftButton.setOnClickListener(leftButtonClickListener);
          rightButton.setOnClickListener(rightButtonClickListener);
      }

      public Builder setMessage(String message) {
          this.message = message;
          return this;
      }

      public Builder setTitle(String title) {
          this.title = title;
          return this;
      }

      public Builder setLeftButton(String leftButtonText, View.OnClickListener leftButtonClickListener) {
          this.leftButtonText = leftButtonText;
          this.leftButtonClickListener = leftButtonClickListener;
          return this;
      }

      public Builder setRightButton(String rightButtonText, View.OnClickListener rightButtonClickListener) {
          this.rightButtonText = rightButtonText;
          this.rightButtonClickListener = rightButtonClickListener;
          return this;
      }

      public Builder isSingleButton(boolean isSingleButton) {
          this.isSingle = isSingleButton;
          return this;
      }

      public Builder setSingleButton(String rightButtonText, View.OnClickListener rightButtonClickListener) {
          this.rightButtonText = rightButtonText;
          this.rightButtonClickListener = rightButtonClickListener;
          return this;
      }
  }

  @Override
  public boolean onKeyDown(int keyCode, KeyEvent event) {
      if (keyCode == KeyEvent.KEYCODE_BACK) {
          dismiss();
      }
      return super.onKeyDown(keyCode, event);
  }
}

到此,自定义仿IOS的Dialog已经完成了,我们简单的使用一下吧。

private BukkaDialog.Builder deleteDialogBuilder;
private BukkaDialog deleteDialog;

deleteDialogBuilder = new BukkaDialog.Builder(this);
deleteDialog = deleteDialogBuilder
              .setTitle(getString(R.string.dialog_title))
              .setMessage(getString(R.string.dialog_content))
              .isSingleButton(false)
              .setRightButton(getString(R.string.ok), v1 -> {
                 //TODO something
                  deleteDialog.onDismiss();
              })
              .setLeftButton(getString(R.string.cancel), v12 -> deleteDialog.onDismiss())
              .createDialog();
      deleteDialog.show();

一起来看看最终的效果吧,还不错。

最终效果

小结

这里我只提供了大部分核心代码,希望对广大安卓开发者有所帮助。也希望通过这个例子,更加清楚的认识到弹窗的知识。在这篇文章中,我自定义了一个仿IOS的Dialog,在android开发者,自定义View是一块非常实用的知识。下一期我想和大家分享的是:Android自定义View。

原文作者litterMay原文链接:http://www.jianshu.com/p/08d17e073318

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,937评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,503评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,712评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,668评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,677评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,601评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,975评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,637评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,881评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,621评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,710评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,387评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,971评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,947评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,189评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,805评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,449评论 2 342

推荐阅读更多精彩内容