android自定义widget,android自定义toast(widget开发)示例

1、Toast控件:

通过查看源代码,发现Toast里面实现的原理是通过服务Context.LAYOUT_INFLATER_SERVICE获取一个LayoutInflater布局管理器,从而获取一个View对象(TextView),设置内容将其显示

public static Toast makeText(Context context, CharSequence text, int duration) {

Toast result = new Toast(context);

LayoutInflater inflate = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

View v = inflate.inflate(com.android.internal.R.layout.transient_notification, null);

TextView tv = (TextView)v.findViewById(com.android.internal.R.id.message);

tv.setText(text);

result.mNextView = v;

result.mDuration = duration;

return result;

}

定义布局文件:

android:layout_width="200dip"

android:layout_height="wrap_content"

android:orientation="horizontal" >

android:id="@+id/iv_my_toast"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:src="@drawable/notification" />

android:id="@+id/tv_my_toast"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:textSize="18sp"

android:text="text"

/>

自定义MyToast类:

public class MyToast {

/**

* 显示自定义的土司

* @param context 上下文

* @param iconid 图标的id

* @param text 显示的文本

*/

public static void showToast(Context context,int iconid, String text){

View view = View.inflate(context, R.layout.my_toast, null);

TextView tv = (TextView) view.findViewById(R.id.tv_my_toast);

ImageView iv = (ImageView) view.findViewById(R.id.iv_my_toast);

iv.setImageResource(iconid);

tv.setText(text);

Toast toast = new Toast(context);

toast.setDuration(0);

toast.setView(view);

toast.show();

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值