gpt4 book ai didi

Android AnimationDrawable返回空指针异常

转载 作者:太空狗 更新时间:2023-10-29 15:03:56 25 4
gpt4 key购买 nike

我的主要目标是让它有一个“按钮”,该按钮最初是黑色的,当按下它的动画时,它会像进度条一样沿顺时针方向亮起。但我似乎根本无法让 animationdrawable 工作。

我的 xml 动画名为 squareanimation,位于 res 目录的可绘制资源文件夹中

<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android" android:oneshot="true">

<item android:drawable="@drawable/square" android:duration="210" />
<item android:drawable="@drawable/square1" android:duration="210" />

</animation-list>

我的布局中有我的 ImageView

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="com.soundboard.sounds.MainActivity"
android:background="@drawable/app_background">

<TableLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Cowbell"
android:id="@+id/textView"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:layout_centerInParent="true"
android:gravity="center"/>

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageHost"/>

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="beep"
android:id="@+id/beepButton"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:background="@drawable/square" />

</TableLayout>

</RelativeLayout>

然后我有我的 Activity

public class MainActivity extends ActionBarActivity implements View.OnClickListener {
AnimationDrawable squareanimation;
Button beepButton;


@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

beepButton = (Button) findViewById(R.id.beepButton);

ImageView square = (ImageView) findViewById(R.id.imageHost);
square.setBackgroundResource(R.drawable.squareanimation);
squareanimation = (AnimationDrawable) square.getBackground();
}


public boolean onTouchEvent(MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_DOWN) {
if(squareanimation == null)beepButton.setText("Not working");
return true;
}
return super.onTouchEvent(event);
}

这些只是我的代码 fragment

每次我运行我的程序时,无论我清理或重建多少次,程序都不会将 squareanimation 从 null 更改为 null。如果我确实运行了 squareanimation.start() 方法,它会使程序崩溃。

我的图片都是 PNG 格式,128px * 128px 如果有任何改变的话。我所有的图像都存储在 drawable-hdpi 文件夹中。

最佳答案

我添加了这个作为答案,所以像我这样犯同样错误的人可以找到一个简单的解决办法。我刚从eclipse换到android studio所以我不知道它的一些功能。简而言之,在创建 animationDrawable xml 文件时 - 右键单击​​您的可绘制资源文件夹,然后单击添加新的可绘制资源文件。我愚蠢地只是创建了一个普通的 xml 文件,但不知何故它没有获得相同的功能。

关于Android AnimationDrawable返回空指针异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23674471/

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