사용자 정의 toast, toast 중복 표시, 인터페이스 전환 toast 자동 사라짐

5800 단어
사용자 정의 toast는 간단하다. 바로 코드를 올린다.
먼저 TextView 하나만 있으면 됩니다.
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/tvToastTips"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:background="@drawable/toast_custom_selector"
        android:padding="12dp"
        android:textSize="21sp"
        android:textColor="#FFFFFF" />

LinearLayout>

다음은 클래스입니다.
public class MyWidget
{
    private static Context mContext = null;
    private static Toast mToast = null;

    //    
    @SuppressLint("InflateParams")
    public static void myToast(String str)
    {
        //            
        LayoutInflater inflater = LayoutInflater.from(MyApplication.getContext());

        View view = inflater.inflate(R.layout.widget_custom_toast, null);

        //         ,    textview  
        TextView tvToastTips = (TextView) view.findViewById(R.id.tvToastTips);

        //  toast     
        if (mToast != null)
        {
            mToast.cancel();
        }

        //      textview    
        tvToastTips.setText(str);

        //         ,      toast  
        //  toast
        mToast = new Toast(MyApplication.getContext());

        //  toast                     
        mToast.setGravity(Gravity.CENTER, 0, -120);

        //         
        mToast.setDuration(Toast.LENGTH_SHORT);

        //    
        mToast.setView(view);

        //    ,show  
        mToast.show();

    }

    /**
     *  toast    
     */
    public static void cancleMyToast()
    {
        if (mToast != null)
        {
            mToast.cancel();
        }
    }

}

코드에서는 다음만 필요합니다.
MyWidget.myToast("       ");

모양, 색상, 위치를 사용자 정의하는 Toast를 사용할 수 있습니다.
토스트의 중복 디스플레이에 관하여 토스트가 장시간 사라지지 않고 사용자 체험에 심각한 영향을 미치는 문제.인터넷에는 많은 관련 문장을 참고할 수 있다. 내가 여기에서 채택한 방법은 상술한 코드 블록 중의 것이다.
        //  toast     
        if (mToast != null)
        {
            mToast.cancel();
        }

이 부분의 코드는 매번 Toast를 호출할 때마다 Toast가 비어 있지 않으면 앞의 것을 취소하고 최신 Toast 내용만 표시하면 화면에 Toast가 오랫동안 표시되는 상황이 나타나지 않는다.
인터페이스를 전환하면 토스트가 자동으로 사라지는 것도 필수적이다. 사용자 인터페이스를 몇 개 바꾸면 토스트가 늦게 떠나기 아쉬워하고 좋은 사용자 체험이 아닐 것이다.인터넷상에서는 리셋 시스템 방법으로 리셋 버튼을 눌렀을 때 토스트를 사라지게 한다고 하지만 리셋 키를 통해 인터페이스를 전환하지 않으면 효과가 없다.가장 좋은 방법은 리턴 키를 감시하고 리턴 키를 눌렀을 때 토스트를 사라지게 하는 것이다. 이것도 필요하다.이러한 MyWidget 코드는 activity 또는 fragment가 교체, 제거되는 라이프 사이클 방법에서 호출해야 합니다.
/**
     *  toast    
     */
    public static void cancleMyToast()
    {
        if (mToast != null)
        {
            mToast.cancel();
        }
    }

방법은 바로 그것을 제때에 사라지게 할 수 있다.

좋은 웹페이지 즐겨찾기