android toast幾種使用方法


toast經常會用到,今天做個總結,特別是自定義toast的布局,值得一看。

一.默認展示

  1. // 第一個參數:當前的上下文環境。可用getApplicationContext()或this 
  2. // 第二個參數:要顯示的字符串。也可是R.string中字符串ID 
  3. // 第三個參數:顯示的時間長短。Toast默認的有兩個LENGTH_LONG(長)和LENGTH_SHORT(短),也可以使用毫秒如2000ms 
  4. Toast toast=Toast.makeText(getApplicationContext(), "默認的Toast", Toast.LENGTH_SHORT); 
  5. //顯示toast信息 
  6. toast.show(); 

二.自定義顯示位置

  1. Toast toast=Toast.makeText(getApplicationContext(), "自定義顯示位置的Toast", Toast.LENGTH_SHORT); 
  2.         //第一個參數:設置toast在屏幕中顯示的位置。我現在的設置是居中靠頂 
  3.         //第二個參數:相對於第一個參數設置toast位置的橫向X軸的偏移量,正數向右偏移,負數向左偏移 
  4.         //第三個參數:同的第二個參數道理一樣 
  5.         //如果你設置的偏移量超過了屏幕的范圍,toast將在屏幕內靠近超出的那個邊界顯示 
  6.         toast.setGravity(Gravity.TOP|Gravity.CENTER, -50, 100);  
  7.         //屏幕居中顯示,X軸和Y軸偏移量都是0 
  8.         //toast.setGravity(Gravity.CENTER, 0, 0);  
  9.         toast.show(); 

三、帶圖片的

  1. oast toast=Toast.makeText(getApplicationContext(), "顯示帶圖片的toast", 3000); 
  2.         toast.setGravity(Gravity.CENTER, 0, 0);  
  3.         //創建圖片視圖對象 
  4.         ImageView imageView= new ImageView(getApplicationContext()); 
  5.         //設置圖片 
  6.         imageView.setImageResource(R.drawable.ic_launcher); 
  7.         //獲得toast的布局 
  8.         LinearLayout toastView = (LinearLayout) toast.getView(); 
  9.         //設置此布局為橫向的 
  10.         toastView.setOrientation(LinearLayout.HORIZONTAL); 
  11.         //將ImageView在加入到此布局中的第一個位置 
  12.         toastView.addView(imageView, 0); 
  13.         toast.show(); 

四、完全自定義顯示方式

1. toast.xml布局

<ImageView
        android:id="@+id/image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

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

        <TextView
            android:id="@+id/title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

        <TextView
            android:id="@+id/content"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

    </LinearLayout>
toast.xml

2.代碼

public class ToastActivity extends Activity {
    private Button bt;
    private ImageView image;
    private TextView title, content;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        bt = (Button) findViewById(R.id.bt);
        bt.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                showToast();
            }
        });
    }

    private void showToast() {
        LayoutInflater inflater = getLayoutInflater();
        View view = inflater.inflate(R.layout.toast, null);
        image = (ImageView) view.findViewById(R.id.image);
        title = (TextView) view.findViewById(R.id.title);
        content = (TextView) view.findViewById(R.id.content);
        image.setBackgroundResource(R.drawable.ic_launcher);
        title.setText("自定義toast");
        content.setText("hello,self toast");
        Toast toast = new Toast(getApplicationContext());
        toast.setGravity(Gravity.CENTER, 0, 0);
        toast.setDuration(Toast.LENGTH_SHORT);
        toast.setView(view);
        toast.show();
    }

}

 

五、其他線程通過Handler的調用

//調用方法1 
    //Thread th=new Thread(this); 
    //th.start(); 
    //調用方法2 
    handler.post(new Runnable() { 
        @Override 
        public void run() { 
            showToast(); 
        } 
    }); 
 
Java代碼
public void showToast(){ 
        Toast toast=Toast.makeText(getApplicationContext(), "Toast在其他線程中調用顯示", Toast.LENGTH_SHORT); 
        toast.show(); 
    } 
 
Java代碼
Handler handler=new Handler(){ 
        @Override 
        public void handleMessage(Message msg) { 
            int what=msg.what; 
            switch (what) { 
            case 1: 
                showToast(); 
                break; 
            default: 
                break; 
            } 
             
            super.handleMessage(msg); 
        } 
    }; 
 
Java代碼
@Override 
    public void run() { 
        handler.sendEmptyMessage(1); 
    } 

 

 

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM