Androidのカスタムポップアップ枠dialog効果


アイテムはポップアップフレームを使用して、アップルのスタイルと同じです。だから自分で定義しました。似ていません。でも大丈夫です。
余計なことを言わないで、直接コードを入れてください。
1、レイアウトファイルを先に見ます。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:padding="20dp"
 android:orientation="vertical">

 <LinearLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:gravity="center_horizontal"
  android:background="@drawable/custom_dialog_background"
  android:orientation="vertical">

  <LinearLayout
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:gravity="center_horizontal"
   android:orientation="vertical">

   <TextView
    android:id="@+id/tv_title_custom_dialog"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="20dp"
    android:text="  "
    android:textColor="#000"
    android:textSize="18dp" />

   <TextView
    android:id="@+id/tv_message_custom_dialog"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp"
    android:text="         " />
  </LinearLayout>

  <View
   android:layout_width="match_parent"
   android:layout_height="0.5dp"
   android:layout_marginTop="20dp"
   android:background="#dfdfdf" />

  <LinearLayout
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:orientation="horizontal">

   <Button
    android:id="@+id/btn_negative_custom_dialog"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:background="@android:color/transparent"
    android:text="  "
    android:textColor="@android:color/holo_blue_dark" />

   <View
    android:layout_width="0.5dp"
    android:layout_height="match_parent"
    android:background="#dfdfdf" />

   <Button
    android:id="@+id/btn_positive_custom_dialog"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:background="@android:color/transparent"
    android:text="  "
    android:textColor="@android:color/holo_blue_dark" />
  </LinearLayout>
 </LinearLayout>
</LinearLayout>
2、統合dialogで書き直しました。

package newair.com.storelibrary.ui.custom.widget;

import android.app.Dialog;
import android.content.Context;
import android.content.DialogInterface;
import android.graphics.Color;
import android.graphics.drawable.ColorDrawable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.view.Window;
import android.view.WindowManager;
import android.widget.Button;
import android.widget.FrameLayout;
import android.widget.LinearLayout;
import android.widget.TextView;

import newair.com.storelibrary.R;

/**
 * Created by ouhimehime on 16/4/22.
 * ---------      -----------
 */
public class CustomDialog extends Dialog {


 public CustomDialog(Context context) {
  super(context);
 }

 public CustomDialog(Context context, int themeResId) {
  super(context, themeResId);
 }

 protected CustomDialog(Context context, boolean cancelable, OnCancelListener cancelListener) {
  super(context, cancelable, cancelListener);
 }

 public static class Builder {
  private Context context;
  private String title; //  
  private String message;//    
  private String negative_text;//   
  private String positive_text;//   
  private DialogInterface.OnClickListener negativeListener;//     
  private DialogInterface.OnClickListener positiveListener;//     

  public Builder(Context context) {
   this.context = context;
  }

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

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

  public Builder setNegativeButton(String negative_text, DialogInterface.OnClickListener negativeListener) {
   if (negative_text == null) {
    this.negative_text = "  ";
   }
   this.negative_text = negative_text;
   this.negativeListener = negativeListener;

   return this;
  }

  public Builder setPositionButton(String positive_text, DialogInterface.OnClickListener positiveListener) {
   if (positive_text == null) {
    this.positive_text = "  ";
   }
   this.positive_text = positive_text;
   this.positiveListener = positiveListener;

   return this;
  }

  private TextView tv_title_custom_dialog; //  
  private TextView tv_message_custom_dialog;//    
  private Button btn_negative_custom_dialog;//  
  private Button btn_positive_custom_dialog;//  


  public CustomDialog create() {
   final CustomDialog dialog = new CustomDialog(context);
   View view = LayoutInflater.from(context).inflate(R.layout.dialog_custom_style_layout, null);
   dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);//     ,        ,      ,                 
//   dialog.addContentView(view, new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT));
   dialog.setContentView(view, new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT));
   tv_title_custom_dialog = (TextView) view.findViewById(R.id.tv_title_custom_dialog);
   tv_message_custom_dialog = (TextView) view.findViewById(R.id.tv_message_custom_dialog);
   btn_negative_custom_dialog = (Button) view.findViewById(R.id.btn_negative_custom_dialog);
   btn_positive_custom_dialog = (Button) view.findViewById(R.id.btn_positive_custom_dialog);
   tv_title_custom_dialog.setText(title);
   tv_message_custom_dialog.setText(message);
   btn_negative_custom_dialog.setText(negative_text);
   btn_positive_custom_dialog.setText(positive_text);
   dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
   btn_negative_custom_dialog.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
     negativeListener.onClick(dialog, Dialog.BUTTON_NEGATIVE);
    }
   });
   btn_positive_custom_dialog.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
     positiveListener.onClick(dialog, Dialog.BUTTON_POSITIVE);
    }
   });
   return dialog;
  }
 }
}
3、システムの使い方と同じです。

CustomDialog.Builder builder = new CustomDialog.Builder(this);
    builder.setTitle("    ")
      .setMessage("      ,    ")
      .setNegativeButton("   ", new DialogInterface.OnClickListener() {
       @Override
       public void onClick(DialogInterface dialog, int which) {
        dialog.dismiss();
        Toast.makeText(GoodsListActivity.this, "       ", Toast.LENGTH_SHORT).show();
       }
      })
      .setPositionButton("  ", new DialogInterface.OnClickListener() {
       @Override
       public void onClick(DialogInterface dialog, int which) {
        dialog.dismiss();
        Toast.makeText(GoodsListActivity.this, "       ", Toast.LENGTH_SHORT).show();
       }
      })
      .create()
      .show();
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。