web-dev-qa-db-ja.com

カスタムのボタンAndroidトースト?

トーストにボタンを配置することは可能ですか?

理論的には、XMLのレイアウトからカスタムToastを作成できるためです。ただし、ボタンを配置しようとしましたが、クリックを登録できませんでした。誰かがなんとかそのようなことをすることができましたか?

29
Sephy

トーストはクリックできません。トーストメッセージ内のクリックをキャプチャすることはできません。そのためのダイアログを作成する必要があります。詳細については、 ダイアログの作成 を参照してください。

Toast クラスのAPIは、トーストがフォーカスを受け取ることは決してなく、トーストはビューではないため、onClickメッセージはありません。したがって、トーストの子もクリックできないと思います。

35
Janusz

トーストにはボタンが含まれています。ジェリービーンズのGmailアプリとギャラリーアプリには、ボタンを含むセミトーストがあることを除いて、Googleがこれをどのように実行したかを次に示します

https://Gist.github.com/benvd/4090998

これはあなたの質問に答えると思います。

19
Hazem Farahat

スニペットは、次のカスタムToastの実装を示しています。

Header

  • 元のToastクラスと同様のインターフェースを持っている
  • Dialogとして使用できます(Gmailアプリのようなクリック可能なボタンがあります)
  • lengthmillisに設定する可能性があります
  • アニメーションの表示とキャンセルを設定する可能性があります
  • 初期化されたActivityでのみ有効

現在の制限:

  • 画面の向きの変更はサポートされていません

使用法:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    //...

    View toastView = new View(getBaseContext());
    //init your toast view

    ActivityToast toast = new ActivityToast(this, toastView);

    //set toast Gravity ( Gravity.BOTTOM | Gravity.FILL_HORIZONTAL by default)
    toast.setGravity(Gravity.CENTER);

    toast.setLength(10000); //set toast show duration to 10 seconds (2 seconds by default)

    Animation showAnim; // init animation
    Animation.AnimationListener showAnimListener; //init anim listener
    toast.setShowAnimation(showAnim);
    toast.setShowAnimationListener(showAnimListener);

    Animation cancelAnim; // init animation
    Animation.AnimationListener cancelAnimListener; //init anim listener
    toast.setCancelAnimation(showAnim);
    toast.setCancelAnimationListener(showAnimListener);

    toast.show(); //show toast view
    toast.isShowing(); // check if toast is showing now
    toast.cancel(); //cancel toast view

    toast.getView(); //get toast view to update it or to do something ..
}

出典

import Android.app.Activity;
import Android.os.Handler;
import Android.support.annotation.NonNull;
import Android.view.Gravity;
import Android.view.MotionEvent;
import Android.view.View;
import Android.view.ViewGroup;
import Android.view.animation.AlphaAnimation;
import Android.view.animation.Animation;
import Android.widget.FrameLayout;

public class ActivityToast {

    public static final long LENGTH_SHORT = 2000;
    public static final long LENGTH_LONG = 3000;
    public static final int DEFAULT_ANIMATION_DURATION = 400;

    private final Activity mActivity;
    private FrameLayout.LayoutParams mLayoutParams;

    private Handler mHandler = new Handler();

    private ViewGroup mParent;
    private FrameLayout mToastHolder;
    private View mToastView;

    private Animation mShowAnimation;
    private Animation mCancelAnimation;

    private long mLength = LENGTH_SHORT;

    private Animation.AnimationListener mShowAnimationListener;
    private Animation.AnimationListener mCancelAnimationListener;

    private boolean mIsAnimationRunning;
    private boolean mIsShown;

    /**
     * @param activity Toast will be shown at top of the Widow of this Activity
     */
    public ActivityToast(@NonNull Activity activity, View toastView) {
        mActivity = activity;

        mParent = (ViewGroup) activity.getWindow().getDecorView();
        mToastHolder = new FrameLayout(activity.getBaseContext());
        mLayoutParams = new FrameLayout.LayoutParams(
                ViewGroup.LayoutParams.WRAP_CONTENT,
                ViewGroup.LayoutParams.WRAP_CONTENT,
                Gravity.BOTTOM | Gravity.FILL_HORIZONTAL
        );
        mToastHolder.setLayoutParams(mLayoutParams);

        mShowAnimation = new AlphaAnimation(0.0f, 1.0f);
        mShowAnimation.setDuration(DEFAULT_ANIMATION_DURATION);
        mShowAnimation.setAnimationListener(mHiddenShowListener);

        mCancelAnimation = new AlphaAnimation(1.0f, 0.0f);
        mCancelAnimation.setDuration(DEFAULT_ANIMATION_DURATION);
        mCancelAnimation.setAnimationListener(mHiddenCancelListener);

        mToastView = toastView;
        mToastHolder.addView(mToastView);

        mToastHolder.setOnTouchListener(new View.OnTouchListener() {
            @Override
            public boolean onTouch(View view, MotionEvent motionEvent) {
                if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
                    cancel();
                }
                return false;
            }
        });
    }

    public void show() {
        if (!isShowing()) {
            mParent.addView(mToastHolder);
            mIsShown = true;

            if (mShowAnimation != null) {
                mToastHolder.startAnimation(mShowAnimation);
            } else {
                mHandler.postDelayed(mCancelTask, mLength);
            }
        }
    }

    public void cancel() {
        if (isShowing() && !mIsAnimationRunning) {
            if (mCancelAnimation != null) {
                mToastHolder.startAnimation(mCancelAnimation);
            } else {
                mParent.removeView(mToastHolder);
                mHandler.removeCallbacks(mCancelTask);
                mIsShown = false;
            }
        }
    }

    public boolean isShowing() {
        return mIsShown;
    }

    /**
     * Pay attention that Action bars is the part of Activity window
     *
     * @param gravity Position of view in Activity window
     */

    public void setGravity(int gravity) {
        mLayoutParams.gravity = gravity;

        if (isShowing()) {
            mToastHolder.requestLayout();
        }
    }

    public void setShowAnimation(Animation showAnimation) {
        mShowAnimation = showAnimation;
    }

    public void setCancelAnimation(Animation cancelAnimation) {
        mCancelAnimation = cancelAnimation;
    }

    /**
     * @param cancelAnimationListener cancel toast animation. Note: you should use this instead of
     *                                Animation.setOnAnimationListener();
     */
    public void setCancelAnimationListener(Animation.AnimationListener cancelAnimationListener) {
        mCancelAnimationListener = cancelAnimationListener;
    }

    /**
     * @param showAnimationListener show toast animation. Note: you should use this instead of
     *                              Animation.setOnAnimationListener();
     */
    public void setShowAnimationListener(Animation.AnimationListener showAnimationListener) {
        mShowAnimationListener = showAnimationListener;
    }

    public void setLength(long length) {
        mLength = length;
    }

    public View getView() {
        return mToastView;
    }

    private Runnable mCancelTask = new Runnable() {
        @Override
        public void run() {
            cancel();
        }
    };

    private Animation.AnimationListener mHiddenShowListener = new Animation.AnimationListener() {
        @Override
        public void onAnimationStart(Animation animation) {
            if (mShowAnimationListener != null) {
                mShowAnimationListener.onAnimationStart(animation);
            }

            mIsAnimationRunning = true;
        }

        @Override
        public void onAnimationEnd(Animation animation) {
            mHandler.postDelayed(mCancelTask, mLength);

            if (mShowAnimationListener != null) {
                mShowAnimationListener.onAnimationEnd(animation);
            }

            mIsAnimationRunning = false;
        }

        @Override
        public void onAnimationRepeat(Animation animation) {
            if (mShowAnimationListener != null) {
                mShowAnimationListener.onAnimationRepeat(animation);
            }
        }
    };

    private Animation.AnimationListener mHiddenCancelListener = new Animation.AnimationListener() {
        @Override
        public void onAnimationStart(Animation animation) {
            if (mCancelAnimationListener != null) {
                mCancelAnimationListener.onAnimationStart(animation);
            }

            mIsAnimationRunning = true;
        }

        @Override
        public void onAnimationEnd(Animation animation) {
            mParent.removeView(mToastHolder);
            mHandler.removeCallbacks(mCancelTask);

            if (mCancelAnimationListener != null) {
                mCancelAnimationListener.onAnimationEnd(animation);
            }

            mIsAnimationRunning = false;
            mIsShown = false;
        }

        @Override
        public void onAnimationRepeat(Animation animation) {
            if (mCancelAnimationListener != null) {
                mCancelAnimationListener.onAnimationRepeat(animation);
            }
        }
    };
}

github上の私の元の投稿
この投稿のカスタムレイアウトの実装を示す投稿

8
Yakiv Mospan

トーストに渡されるカスタムビューには、何でも含めることができます。ただし、トーストはタッチイベントを受け取ることができないため、タッチイベントを使用するコンポーネントは、ストックトースト(ボタン、ラジオボタンなど)では機能しません。唯一の選択肢は、ボタンを含むカスタムビューを作成し、レイアウトに追加することです。これを行う方法の多くの例と、他の人がどのように行っているかを確認できるいくつかのライブラリがあります。

ndoBar
MessageBar
NurikのUndoBar

もちろん、私がまとめた SuperToasts ライブラリを使用することもできますが、1つの使用法では少々やりすぎかもしれません。私がそれを行う方法は、 SuperActivityToast クラスで概説されています。

4
John P.

Snackbarを使用する必要があります。最新のAndroidサポートライブラリ(回答時))にあり、古いAPIレベルと互換性があります。DialogまたはカスタムViewとは異なり、Toastとは異なりボタンを使用できます。

  1. _Android Support Library_(リビジョン22.2.1以降)のExtrasから_SDK Manager_をダウンロードします。
  2. _build.gradle_で、これをクラスの依存関係に追加します:_com.Android.support:design:22.2.0_。
  3. 実装:

    Snackbar.make(this.findViewById(Android.R.id.content), "Toast Message", Snackbar.LENGTH_LONG) .setAction("Click here to activate action", onClickListener) .setActionTextColor(Color.RED) .show;

そして、それはそれです。どのgithubプロジェクトも実装もToastによく似ていません。私は自分のプロジェクトの1つでそれを使用しました。

1

この場合、 SuperToast を試すことができます。ボタンで乾杯できます。カスタム期間機能、カラフルな背景、カラフルなフォント、カスタムフォント、アニメーション効果があります。あなたがそれを楽しんでくれることを願っています

1

システムオーバーレイウィンドウの作成(常に一番上)

これはそれが可能であることを示唆しています。トーストにボタンも必要なので、自分で実装する必要があります。もっと見つけたら、投稿に追加します

0

ボタンを追加したい場合は、アラートボックスを使用してください:-)。以下にいくつかの例を示します Androidのダイアログボックス

0
Martin