弹出并点击弹框关闭 自定义toast_自定义Toast弹出窗口|Android教程

如果我们在android中对系统默认的Toast不满意,我们也可以自定义Toast弹出消息窗口,使用很简单,就是new --- file --- xml --- layout xml file自定义一个layout布局文件,然后使用Toast对象的setView方法将自定义的layout布局设置进去即可,请看步骤:

1创建custom_toast_layout.xml文件,创建步骤:new --- file --- xml --- layout xml file,代码如下:<?xml  version="1.0" encoding="utf-8"?>

android:id="@+id/toast_layout_root"

android:orientation="vertical"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:padding="8dp"

android:background="#111">

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:textColor="#FFF"/>

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:textColor="#FFF"/>

2:添加一个Button按钮,给它一个点击事件,用于测试toast弹出,代码就不展示了。

3:在MainActivity.java文件实现button的点击事件,如showToast()方法,代码如下:public void showToast(View view){

LayoutInflater inflater = getLayoutInflater();

//通过inflater对象加载自定义文件

View layout = inflater.inflate(R.layout.custom_toast_layout,

(ViewGroup) findViewById(R.id.toast_layout_root));

// Set the title and description TextView from our custom layout

//设置TextView标题与描述

TextView title = (TextView) layout.findViewById(R.id.title);

title.setText("Toast Title");

TextView description = (TextView) layout.findViewById(R.id.description);

description.setText("Toast Description");

// Create and show the Toast object

//创建Toast对象并展示toast

Toast toast = new Toast(getApplicationContext());

toast.setGravity(Gravity.CENTER, 0, 0);

toast.setDuration(Toast.LENGTH_LONG);

toast.setView(layout);

toast.show();

}

点击效果如图:

完毕!

来源网站:太平洋学习网,转载请注明出处:http://www.tpyyes.com/a/android/532.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Android 中,可以通过自定义 Toast 实现类似于悬浮通知的效果。具体步骤如下: 1. 创建一个自定义Toast 布局文件,例如 `custom_toast.xml`,可以在其中添加需要展示的内容,比如标题、内容、图标等。 2. 在代码中创建 Toast 对象,并将其设置为自定义的布局: ```java LayoutInflater inflater = getLayoutInflater(); View layout = inflater.inflate(R.layout.custom_toast, (ViewGroup) findViewById(R.id.custom_toast_container)); Toast toast = new Toast(getApplicationContext()); toast.setGravity(Gravity.CENTER_VERTICAL, 0, 0); toast.setDuration(Toast.LENGTH_LONG); toast.setView(layout); toast.show(); ``` 3. 如果需要实现悬浮通知的效果,可以将 Toast 的位置设置为 `Gravity.TOP | Gravity.LEFT`,并通过定时器不断更新 Toast 的位置。具体代码可以参考下面的示例: ```java final WindowManager.LayoutParams params = new WindowManager.LayoutParams( WindowManager.LayoutParams.WRAP_CONTENT, WindowManager.LayoutParams.WRAP_CONTENT, WindowManager.LayoutParams.TYPE_APPLICATION_OVERLAY, WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE | WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL | WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH, PixelFormat.TRANSLUCENT); params.gravity = Gravity.TOP | Gravity.LEFT; params.x = 0; params.y = 100; final Toast toast = new Toast(getApplicationContext()); toast.setGravity(Gravity.TOP | Gravity.LEFT, 0, 0); toast.setDuration(Toast.LENGTH_LONG); toast.setView(layout); final Handler handler = new Handler(); final Timer timer = new Timer(); timer.schedule(new TimerTask() { @Override public void run() { handler.post(new Runnable() { @Override public void run() { params.y -= 10; toast.getView().setAlpha(toast.getView().getAlpha() - 0.1f); WindowManager windowManager = (WindowManager) getSystemService(WINDOW_SERVICE); windowManager.updateViewLayout(toast.getView(), params); if(params.y <= 0) { timer.cancel(); } } }); } }, 0, 100); ``` 注意:为了实现悬浮通知的效果,需要在 AndroidManifest.xml 文件中添加以下权限: ```xml <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> ```

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值