应用程序意外中断

发布于 2025-01-04 22:49:01 字数 867 浏览 1 评论 0原文

为什么在这个非常简单的例子中,最后一条语句(setBackgroundColor) 导致应用程序崩溃?

public class Macumba extends Activity
{
   @Override
   public void onCreate(Bundle savedInstanceState)
   {
       super.onCreate(savedInstanceState);
       setContentView(R.layout.main);
       ImageView vista = (ImageView)findViewById(R.id.vista);
       vista.setBackgroundColor(Color.YELLOW);
   }
}

main.xml 也非常简单:

<?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout
   android:id="@+id/widget0"
   android:layout_width="fill_parent"
   android:layout_height="fill_parent"
   xmlns:android="http://schemas.android.com/apk/res/android"
>
<ImageView
   android:id="@+id/vista"
   android:layout_width="300px"
   android:layout_height="330px"
   android:layout_x="9px"
   android:layout_y="8px"
/>
</AbsoluteLayout>

Why, in this very simple example, the last statement (setBackgroundColor)
produces a crash of the application ?

public class Macumba extends Activity
{
   @Override
   public void onCreate(Bundle savedInstanceState)
   {
       super.onCreate(savedInstanceState);
       setContentView(R.layout.main);
       ImageView vista = (ImageView)findViewById(R.id.vista);
       vista.setBackgroundColor(Color.YELLOW);
   }
}

main.xml is very simple, too:

<?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout
   android:id="@+id/widget0"
   android:layout_width="fill_parent"
   android:layout_height="fill_parent"
   xmlns:android="http://schemas.android.com/apk/res/android"
>
<ImageView
   android:id="@+id/vista"
   android:layout_width="300px"
   android:layout_height="330px"
   android:layout_x="9px"
   android:layout_y="8px"
/>
</AbsoluteLayout>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

若沐 2025-01-11 22:49:01

你会遇到什么样的异常?空指针异常?如果是这样,很可能是因为 vista 为 null,这是因为 R.id.vista 不在您的布局中。

您确定这是正确的 main.xml 文件吗?并且没有来自例如。另一个项目?

What kind of exception do you get? NullPointerException? If so, it's most likely because vista is null, which is because R.id.vista is not in your layout.

Are you sure it's the right main.xml file? And not one from eg. another project?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文