Android AnimationDrawable返回空指针异常

时间:2014-05-15 09:36:49

标签: android nullpointerexception 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>

然后我有我的活动

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);
        }

这些只是我的代码的片段

无论我清理或重建多少次或其他什么,每次我运行我的程序时,程序都不会将squareanimation从null变为空。如果我运行squareanimation.start()方法,它会使程序崩溃。

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

1 个答案:

答案 0 :(得分:0)

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

相关问题