自己定义Toast

Posted jzdwajue

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自己定义Toast相关的知识,希望对你有一定的参考价值。

.指定Toast通知的位置
自己定义Toast:


怎样自己定义Toast??
第一步:
写一个XML样式自己定义Toast显示样式
在res/layout下创建一个xml文件toast(文件名称自己定义)
<?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:orientation="vertical" > <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:background="#448899" android:text="你好" /> <ImageView android:layout_width="match_parent" android:layout_height="wrap_content" android:src="@drawable/ic_launcher" /> </LinearLayout>




在MainActivity中


package com.example.checkboxtext;


import android.app.Activity;
import android.os.Bundle;
import android.view.Gravity;
import android.view.View;
import android.widget.Toast;






public class MainActivity extends Activity {






	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
	}




	public void toastshow(View view){
		//		Toast toast = Toast.makeText(MainActivity.this, "toastshow", 0);
		//		toast.setText("你好");
		//		toast.setGravity(Gravity.TOP|Gravity.LEFT, 30, 200);//显示在距离顶部200,距离left30的位置
		//		toast.show();


		Toast toast = new Toast(MainActivity.this);
		View view2 = View.inflate(MainActivity.this, R.layout.toast, null);//把一个布局转化成一个view对象
		toast.setView(view2);
		toast.setDuration(0);//定义时间长短0(短)或1(长)
		toast.setGravity(Gravity.BOTTOM|Gravity.CENTER_HORIZONTAL, 0, 0);
		toast.show();


	}
}




以上是关于自己定义Toast的主要内容,如果未能解决你的问题,请参考以下文章

android Toast大全(五种情形)建立属于你自己的Toast

如何从自定义列表视图中获取选定项目并在 toast 消息中打印?

自己定义Toast

Android自己定义Toast

android Toast大全(五种情形)建立属于你自己的Toast

如何在Android开发中熟练使用五种Toast的特效