gpt4 book ai didi

java - 如何在我的自定义 toast 中也得到 toast 的淡蓝色光晕?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:14:30 28 4
gpt4 key购买 nike

我正在创建我的自定义 toast,主要是因为我将它放在 GridView 上并且需要对其宽度进行一些控制。但我真的很喜欢标准 toast 上的淡蓝色光环,并希望恢复它(或者至少让我的自定义 toast 看起来与默认 toast 有点相似)。

实现该目标的简单/优雅方法是什么?

我从这个布局创建了一个自定义 toast:

    <LinearLayout 
android:id="@+id/toast_layout_root"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:padding="10dp">
<ImageView android:id="@+id/toast_layout_image"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:src="@drawable/icon" android:layout_marginRight="10dp">
</ImageView>
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:id="@+id/toast_layout_text"
android:textColor="#FFF" android:textAppearance="?android:attr/textAppearanceLarge">
</TextView>
</LinearLayout>

并以这种方式调用它(android dev.documentation 中概述的常见方法以及网络上的一些教程,唯一的区别是我使用 GridView 并且每个 toast 都根据其网格图 block 放置位置):

int location[] = new int[2];
view.getLocationOnScreen(location);
LayoutInflater inflater = getLayoutInflater();
View toastLayout = inflater.inflate(R.layout.toast_layout,(ViewGroup)findViewById(R.id.toast_layout_root));
TextView textView = (TextView) toastLayout.findViewById(R.id.toast_layout_text);
textView.setText("This tile does not contain any valid data.");
int toastWidth = cellWidth * 3 / 4;
textView.setWidth(toastWidth - 64); // TODO picture size needs to be correct

Toast toast = new Toast(getApplicationContext());
toast.setView(toastLayout);
toast.setDuration(Toast.LENGTH_SHORT);
toast.setGravity(Gravity.TOP|Gravity.LEFT, location[0]+((cellWidth-toastWidth)/2),location[1]+cellHeight-100);
toast.show();

这看起来很干净,但与默认的 toast 完全不同。

最佳答案

将此布局应用于您的 toast 消息:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toast_layout_root"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="35dp"
android:orientation="horizontal"
android:background="@android:drawable/dialog_holo_dark_frame" >
<ImageView android:id="@+id/toast_layout_image"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:src="@drawable/appicon" android:layout_marginRight="10dp">
</ImageView>
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:id="@+id/toast_layout_text"
android:textColor="#FFF" android:textAppearance="?android:attr/textAppearanceLarge">
</TextView>
</LinearLayout>

我没有找到什么是 cellWidth 和 cellHeight,所以如果它不适合,请尝试使用 padding
编辑:哦,我应用了深色主题,请尝试改用浅色。

关于java - 如何在我的自定义 toast 中也得到 toast 的淡蓝色光晕?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8293143/

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