Android   发布时间:2022-04-28  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了我怎样才能在Android中解决此错误? (完成非零值)大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_772_4@ 我似乎无法找到我的程序出现此错误错误

我的代码很长,我发布了所有的R.在我加入之后突出显示了红色

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

            TextView text = (TextView) layout.findViewById(R.id.text);
            text.setText("Please SELEct a Level!");
            text.setTextColor(Color.bLUE);
            text.setTextSize(15);

            Toast toast = new Toast(getApplicationContext());
            toast.setGravity(Gravity.CENTER,0);
            toast.setDuration(Toast.LENGTH_SHORT);
            // toast.getView().setBACkgroundColor(Color.bLUE);
            toast.setView(layout);
            toast.show();

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://scheR_253_11845@as.android.com/apk/res/android"
    android:id="@+id/toast_layout_root"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:padding="8dp"
    android:BACkground="#DAAA"
    >
    <ImageView android:src="@drawable/droid"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginRight="8dp"
        />

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

救命

解决方法

要检查的事情

>检查drawable文件夹中是否有image.jpg和image.png.

如果不是这种情况

>执行构建>清洁项目

如果仍然没有解决问题

>文件>使缓存无效并重新启动

大佬总结

以上是大佬教程为你收集整理的我怎样才能在Android中解决此错误? (完成非零值)全部内容,希望文章能够帮你解决我怎样才能在Android中解决此错误? (完成非零值)所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。