web-dev-qa-db-ja.com

AndroidでToastの位置を変更する方法は?

Toastを使用していくつかのポップアップテキストを画面に表示すると、画面の下部(デフォルトの位置)の少し上にテキストが表示されます。

ここで、画面の中央または選択に応じてどこかに表示したいと思います。

誰でもこれを達成する方法を教えてもらえますか?

249
UMAR

ドキュメント から、

トーストの配置

標準のトースト通知が画面の下部近くに、水平方向の中央に表示されます。この位置はsetGravity(int, int, int)メソッドで変更できます。これは、Gravity定数、x-positionオフセット、y-positionオフセットの3つのパラメーターを受け入れます。

たとえば、トーストを左上隅に表示することにした場合、次のように重力を設定できます。

toast.setGravity(Gravity.TOP|Gravity.LEFT, 0, 0);

位置を右にナッジする場合は、2番目のパラメーターの値を増やします。ナッジするには、最後のパラメーターの値を増やします。

381
Pentium10

余談ですが、makeTextを呼び出す必要があることを示すエラーが表示された場合は、次のコードで機能します。

Toast toast= Toast.makeText(getApplicationContext(), 
"Your string here", Toast.LENGTH_SHORT);  
toast.setGravity(Gravity.TOP|Gravity.CENTER_HORIZONTAL, 0, 0);
toast.show();
133
Rymnel

以下を使用して、トーストの場所をカスタマイズできます。

setGravity(int gravity, int xOffset, int yOffset)

ドキュメント

これにより、Toastの場所を非常に具体的に指定できます。

XOffsetおよびyOffsetパラメーターに関する最も有用なことの1つは、特定のビューに対してトーストを配置するためにそれらを使用できることです。

たとえば、ボタンの上に表示されるカスタムToastを作成する場合、次のような関数を作成できます。

// v is the Button view that you want the Toast to appear above 
// and messageId is the id of your string resource for the message

private void displayToastAboveButton(View v, int messageId)
{
    int xOffset = 0;
    int yOffset = 0;
    Rect gvr = new Rect();

    View parent = (View) v.getParent(); 
    int parentHeight = parent.getHeight();

    if (v.getGlobalVisibleRect(gvr)) 
    {       
        View root = v.getRootView();

        int halfWidth = root.getRight() / 2;
        int halfHeight = root.getBottom() / 2;

        int parentCenterX = ((gvr.right - gvr.left) / 2) + gvr.left;

        int parentCenterY = ((gvr.bottom - gvr.top) / 2) + gvr.top;

        if (parentCenterY <= halfHeight) 
        {
            yOffset = -(halfHeight - parentCenterY) - parentHeight;
        }
        else 
        {
            yOffset = (parentCenterY - halfHeight) - parentHeight;
        }

        if (parentCenterX < halfWidth) 
        {         
            xOffset = -(halfWidth - parentCenterX);     
        }   

        if (parentCenterX >= halfWidth) 
        {
            xOffset = parentCenterX - halfWidth;
        }  
    }

    Toast toast = Toast.makeText(getActivity(), messageId, Toast.LENGTH_SHORT);
    toast.setGravity(Gravity.CENTER, xOffset, yOffset);
    toast.show();       
}
13
JDJ
 Toast toast = Toast.makeText(test.this,"bbb", Toast.LENGTH_LONG);
 toast.setGravity(Gravity.CENTER, 0, 0);
 toast.show();
9
nzala
Toast mytoast= Toast.makeText(getApplicationContext(), "Toast Message", 1);  
mytoast.setGravity(Gravity.CENTER_HORIZONTAL, 0, 0);  // for center horizontal
//mytoast.setGravity(Gravity.CENTER_VERTICAL);       // for center vertical 
//mytoast.setGravity(Gravity.TOP);                       // for top
mytoast.show();

上記のコードは、画面の中央にトーストを表示したり、必要に応じてトーストの重力を設定するためのウルの選択に応じてトーストを表示するのに役立ちます

注:このプロセスでは、Toastのオブジェクトを使用する必要があります

6
user3652986

トーストの色、位置、背景色を変更する方法は次のとおりです。

Toast toast=Toast.makeText(getApplicationContext(),"This is advanced toast",Toast.LENGTH_LONG);
toast.setGravity(Gravity.BOTTOM | Gravity.RIGHT,0,0);
View view=toast.getView();
TextView  view1=(TextView)view.findViewById(Android.R.id.message);
view1.setTextColor(Color.YELLOW);
view.setBackgroundResource(R.color.colorPrimary);
toast.show();

行ごとの説明: https://www.youtube.com/watch?v=5bzhGd1HZOc

2
Mithun Adhikari

トピン画面でトーストを設定する

toast.setView(view);
toast.setGravity(Gravity.BOTTOM , 0, 0); // here i am setting toast at bottom
 toast.setDuration(Toast.LENGTH_LONG);
 toast.show(); 

今一番下に

 toast.setView(view);
 toast.setGravity(Gravity.BOTTOM , 0, 0); // here i am setting toast at bottom
 toast.setDuration(Toast.LENGTH_LONG);
 toast.show();  

トーストを左、右、中央に設定できるのと同じ方法

こちら をクリックします

1
Abhishek

//カスタムまたはデフォルトのトーストを必要に応じて表示できるカスタムトーストクラス)

public class ToastMessage {
            private Context context;
            private static ToastMessage instance;

            /**
             * @param context
             */
            private ToastMessage(Context context) {
                this.context = context;
            }

            /**
             * @param context
             * @return
             */
            public synchronized static ToastMessage getInstance(Context context) {
                if (instance == null) {
                    instance = new ToastMessage(context);
                }
                return instance;
            }

            /**
             * @param message
             */
            public void showLongMessage(String message) {
                Toast.makeText(context, message, Toast.LENGTH_SHORT).show();
            }

            /**
             * @param message
             */
            public void showSmallMessage(String message) {
                Toast.makeText(context, message, Toast.LENGTH_LONG).show();
            }

            /**
             * The Toast displayed via this method will display it for short period of time
             *
             * @param message
             */
            public void showLongCustomToast(String message) {
                LayoutInflater inflater = ((Activity) context).getLayoutInflater();
                View layout = inflater.inflate(R.layout.layout_custom_toast, (ViewGroup) ((Activity) context).findViewById(R.id.ll_toast));
                TextView msgTv = (TextView) layout.findViewById(R.id.tv_msg);
                msgTv.setText(message);
                Toast toast = new Toast(context);
                toast.setGravity(Gravity.FILL_HORIZONTAL | Gravity.BOTTOM, 0, 0);
                toast.setDuration(Toast.LENGTH_LONG);
                toast.setView(layout);
                toast.show();


            }

            /**
             * The toast displayed by this class will display it for long period of time
             *
             * @param message
             */
            public void showSmallCustomToast(String message) {

                LayoutInflater inflater = ((Activity) context).getLayoutInflater();
                View layout = inflater.inflate(R.layout.layout_custom_toast, (ViewGroup) ((Activity) context).findViewById(R.id.ll_toast));
                TextView msgTv = (TextView) layout.findViewById(R.id.tv_msg);
                msgTv.setText(message);
                Toast toast = new Toast(context);
                toast.setGravity(Gravity.FILL_HORIZONTAL | Gravity.BOTTOM, 0, 0);
                toast.setDuration(Toast.LENGTH_SHORT);
                toast.setView(layout);
                toast.show();
            }

        }
0
Amardeep