gpt4 book ai didi

java - Android - 如果我不导入 R 会出现错误,如果导入则会出现另一个错误?

转载 作者:行者123 更新时间:2023-12-02 08:31:15 24 4
gpt4 key购买 nike

如果我不导入 R,我会收到“id 无法解析或不是字段”

(R.id.mainanim);

如果我导入 R,id 错误就会消失,但我得到“main 和 mainanim 无法解析或不是字段”。它们是我的 .xml 文件。

这是我的代码...也许有一个我没有看到的错误?

 package com.example.carrottest2;

import android.app.Activity;
import android.graphics.drawable.AnimationDrawable;
import android.os.Bundle;
import android.widget.ImageView;
import android.R;

public class Carrottest2 extends Activity {
/** Called when the activity is first created. */

AnimationDrawable mainanimation;

public void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.main);

ImageView mainimage = (ImageView) findViewById(R.id.mainanim);
mainimage.setBackgroundResource(R.anim.mainanim);
mainanimation = (AnimationDrawable) mainimage.getBackground();

Main.XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
</LinearLayout>

Mainanim.xml:

<?xml version="1.0" encoding="UTF-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android" android:oneshot="false">
<item android:drawable="@drawable/carrotsmile" android:duration="2000" />
<item android:drawable="@drawable/carrotblink" android:duration="2000" />
</animation-list>

最佳答案

Mainanim.xml 是布局,而不是 id。要在布局中执行动画,您需要一个 ImageView 将 AnimationDrawable 设置为背景。

关于java - Android - 如果我不导入 R 会出现错误,如果导入则会出现另一个错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3309382/

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