当前位置: 首页 > 知识库问答 >
问题:

如何在Android中解决此错误?(以非零值结束)

壤驷雅达
2023-03-14

我似乎找不到我的程序出了什么问题,请告诉我这个错误

我的代码很长,我要发布所有的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, 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://schemas.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>

帮帮忙

共有3个答案

秦鸿羽
2023-03-14

查找并删除您的drawables的jpg变体(android studio可以找到它,您也可以)。删除图像。jpg,tryagain。jpg等。

郭华美
2023-03-14

添加

multiDexEnabled true 

在你爷爷的档案里

检查一下这个

蒲昊
2023-03-14

要检查的东西

  1. 检查您是否image.jpg和image.png在绘图文件夹中。

如果不是这样的话

如果问题仍未解决

 类似资料:
  • org.gradle.execution.multipleBuildFailures:生成完成,失败1次。 在org.gradle.initialization.defaultgradlelauncher$executeTasks.run(DefaultG radlelauncher.java:358)

  • 错误-mssql08(系统找不到指定的文件)java.io.FileNotFoundException:mssql08(系统找不到指定的文件)在java.io.FileInputStream.Open0(本机方法)

  • 我是android studio的新手,我不明白为什么我的应用程序在开始使用seekbar时会崩溃。谁能帮帮我吗? 公共类MainActivity扩展了AppCompatActivity{SeekBar SeekBar;//声明SeekBar对象TextView TextView,textView2;ListView simpleListview;//声明SeekBar int离散的成员变量;in

  • 问题内容: 我在下一行出现错误。我正在做添加到jsonarray的过程。请帮我。 问题答案: 这是我在重新编程时经常遇到的错误。此异常的原因或细节非常清楚。不允许在迭代时修改集合(正在添加新元素)。至少不支持语法。 为了解决您的问题,我认为有两种方法很简单。 1)。而不是使用语句来循环,更好的方法是使用迭代器来避免ConcurrentModificationException。 2)。在循环播放时

  • 问题内容: 当我尝试运行我的应用程序时,出现此错误:- 更新:-这是我的Build.gradle(Module:app)文件 那是什么意思 问题答案: 当我将某些类文件重构为库项目并且我有一个重复的类文件名时,发生了这种情况。因此,请仔细检查您是否没有重复的名称。

  • 问题内容: 我越来越 非法胶印类型 此代码每次迭代的错误。这是代码: 问题答案: __当您尝试使用 对象 或 数组 作为索引键访问数组索引时,会发生 非法的偏移类型 错误。 例: 您的数组包含一个对象或数组,其值为的某个值,当您尝试将其用作的索引键时,会收到警告。您必须确保包含所需的内容并正确访问它。