gpt4 book ai didi

android - Android : a simple example 上的自定义 toast

转载 作者:IT老高 更新时间:2023-10-28 13:03:43 25 4
gpt4 key购买 nike

我是 Android 编程新手。什么是在 Android 上显示自定义 toast 通知的简单示例?

最佳答案

使用下面的自定义 Toast 代码。它可能会帮助你。

toast.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toast_layout_root"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="10dp"
android:background="#DAAA" >

<ImageView android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginRight="10dp" />

<TextView android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:textColor="#FFF" />

</LinearLayout>

MainActivity.java

LayoutInflater inflater = getLayoutInflater();
View layout = inflater.inflate(R.layout.toast_layout,
(ViewGroup) findViewById(R.id.toast_layout_root));

ImageView image = (ImageView) layout.findViewById(R.id.image);
image.setImageResource(R.drawable.android);
TextView text = (TextView) layout.findViewById(R.id.text);
text.setText("Hello! This is a custom toast!");

Toast toast = new Toast(getApplicationContext());
toast.setGravity(Gravity.CENTER_VERTICAL, 0, 0);
toast.setDuration(Toast.LENGTH_LONG);
toast.setView(layout);
toast.show();

并查看以下链接以获取自定义 Toast。

Custom Toast with Analog Clock

YouTube: Creating Custom Toast With Button in Android Studio

关于android - Android : a simple example 上的自定义 toast ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11288475/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com