Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/python-3.x/15.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java 如何使我的背景动画不断闪烁_Java_Android_Flash_Background - Fatal编程技术网

Java 如何使我的背景动画不断闪烁

Java 如何使我的背景动画不断闪烁,java,android,flash,background,Java,Android,Flash,Background,我的代码如下,但是。。当我运行它时,它什么也没做 Animation animation = new AlphaAnimation(1, 0); // Change alpha // from fully // visible to // invisible animation.setDuration(500); // duration - half a second animation.setInterpolator(new LinearInterpolator()); // do not a

我的代码如下,但是。。当我运行它时,它什么也没做

Animation animation = new AlphaAnimation(1, 0); // Change alpha
// from fully
// visible to
// invisible
animation.setDuration(500); // duration - half a second
animation.setInterpolator(new LinearInterpolator()); // do not alter
// animation
// rate
animation.setRepeatCount(Animation.INFINITE); // Repeat animation
// infinitely
animation.setRepeatMode(Animation.REVERSE); // Reverse animation at
        // the
// end so the layout will
// fade back in
LinearLayout x = (LinearLayout)findViewById(R.id.warning);
x.clearAnimation();
vipul mittal之后的logcat建议

12-11 20:08:18.477: E/AndroidRuntime(1571): FATAL EXCEPTION: main
12-11 20:08:18.477: E/AndroidRuntime(1571): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.NTS.standroid/com.NTS.standroid.Settings}: java.lang.NullPointerException
12-11 20:08:18.477: E/AndroidRuntime(1571):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1647)
12-11 20:08:18.477: E/AndroidRuntime(1571):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1663)
12-11 20:08:18.477: E/AndroidRuntime(1571):     at android.app.ActivityThread.access$1500(ActivityThread.java:117)
12-11 20:08:18.477: E/AndroidRuntime(1571):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:931)
12-11 20:08:18.477: E/AndroidRuntime(1571):     at android.os.Handler.dispatchMessage(Handler.java:99)
12-11 20:08:18.477: E/AndroidRuntime(1571):     at android.os.Looper.loop(Looper.java:130)
12-11 20:08:18.477: E/AndroidRuntime(1571):     at android.app.ActivityThread.main(ActivityThread.java:3683)
12-11 20:08:18.477: E/AndroidRuntime(1571):     at java.lang.reflect.Method.invokeNative(Native Method)
12-11 20:08:18.477: E/AndroidRuntime(1571):     at java.lang.reflect.Method.invoke(Method.java:507)
12-11 20:08:18.477: E/AndroidRuntime(1571):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
12-11 20:08:18.477: E/AndroidRuntime(1571):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
12-11 20:08:18.477: E/AndroidRuntime(1571):     at dalvik.system.NativeStart.main(Native Method)
12-11 20:08:18.477: E/AndroidRuntime(1571): Caused by: java.lang.NullPointerException
12-11 20:08:18.477: E/AndroidRuntime(1571):     at com.NTS.standroid.Settings.onCreate(Settings.java:35)
12-11 20:08:18.477: E/AndroidRuntime(1571):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
12-11 20:08:18.477: E/AndroidRuntime(1571):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1611)
12-11 20:08:18.477: E/AndroidRuntime(1571):     ... 11 more
有什么建议吗

我想让我的背景在按下按钮后不断闪烁

我当前的代码

}
    @SuppressLint("NewApi")
    public void tintBackground() {
        LinearLayout x = (LinearLayout)findViewById(R.id.warning);
        ColorDrawable[] color = { new ColorDrawable(Color.RED),
                new ColorDrawable(Color.WHITE) };
        TransitionDrawable trans = new TransitionDrawable(color);
        int sdk = android.os.Build.VERSION.SDK_INT;
        if (sdk < android.os.Build.VERSION_CODES.JELLY_BEAN) {
            x.setBackgroundDrawable(trans);
        } else {
            x.setBackground(trans);
        }
        trans.startTransition(2000); // do transition over 2 seconds

}
}
@SuppressLint(“新API”)
公共背景(){
LinearLayout x=(LinearLayout)findViewById(R.id.warning);
ColorDrawable[]color={新的ColorDrawable(color.RED),
新的可着色(颜色.白色)};
TransitionDrawable trans=新的TransitionDrawable(颜色);
int sdk=android.os.Build.VERSION.sdk\u int;
if(sdk
和xml文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" 
    android:layout="@+id/warning">

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout="@+id/warning1"
        android:layout_marginTop="50dp"
        android:layout_marginLeft="100dp"
        android:background="@drawable/warning"
        />
</LinearLayout>

必须在线性布局上启动动画:

    Animation animation = new AlphaAnimation(1, 0); // Change alpha
    // from fully
    // visible to
    // invisible
    animation.setDuration(500); // duration - half a second
    animation.setInterpolator(new LinearInterpolator()); // do not alter
    // animation
    // rate
    animation.setRepeatCount(Animation.INFINITE); // Repeat animation
    // infinitely
    animation.setRepeatMode(Animation.REVERSE); // Reverse animation at

    // the
    // end so the layout will
    // fade back in
    LinearLayout x = (LinearLayout)findViewById(R.id.warning);
    x.startAnimation(animation)//<-- start animation don't clear it
Animation Animation=newalphaanimation(1,0);//改变阿尔法
//完全
//看得见
//无形的
动画。设置持续时间(500);//持续时间-半秒
animation.setInterpolator(新的LinearInterpolator());//不要改变
//动画
//比率
animation.setRepeatCount(animation.INFINITE);//重复动画
//无限
animation.setRepeatMode(animation.REVERSE);//反向动画
//
//结束,这样布局将
//淡入
LinearLayout x=(LinearLayout)findViewById(R.id.warning);

x、 startAnimation(动画)/我使用以下代码来着色我的应用程序的背景,也许你可以重复使用:

@SuppressLint("NewApi")
public void tintBackground() {
    View rootView = findViewById(android.R.id.content);
    ColorDrawable[] color = { new ColorDrawable(Color.RED),
            new ColorDrawable(Color.WHITE) };
    TransitionDrawable trans = new TransitionDrawable(color);
    int sdk = android.os.Build.VERSION.SDK_INT;
    if (sdk < android.os.Build.VERSION_CODES.JELLY_BEAN) {
        rootView.setBackgroundDrawable(trans);
    } else {
        rootView.setBackground(trans);
    }
    trans.startTransition(2000); // do transition over 2 seconds

}
    fadeIn = new AlphaAnimation(0.25f, 1);
    fadeIn.setInterpolator(new AccelerateInterpolator()); // add this
    fadeIn.setDuration(500);
    fadeIn.setFillAfter(true);
    fadeIn.setAnimationListener(new RepeatAnimationListener());

    fadeOut = new AlphaAnimation(1, 0.25f);
    fadeOut.setInterpolator(new DecelerateInterpolator()); // and this
    fadeOut.setDuration(500);
    fadeOut.setFillAfter(true);
    fadeOut.setAnimationListener(new RepeatAnimationListener());

private boolean currently_fadeOut;

private class RepeatAnimationListener implements AnimationListener {
    public void onAnimationEnd(Animation animation) {

        if (currently_fadeOut) {
            view.startAnimation(fadeIn);
            currently_fadeOut = false;
        } else {
            view.startAnimation(fadeOut);
            currently_fadeOut = true;
        }
    }

    public void onAnimationRepeat(Animation animation) {
    }

    public void onAnimationStart(Animation animation) {
    }
}

// automatically repeated because of RepeatAnimationListener 
view.startAnimation(fadeOut); 
@SuppressLint(“NewApi”)
公共背景(){
View rootView=findviewbyd(android.R.id.content);
ColorDrawable[]color={新的ColorDrawable(color.RED),
新的可着色(颜色.白色)};
TransitionDrawable trans=新的TransitionDrawable(颜色);
int sdk=android.os.Build.VERSION.sdk\u int;
if(sdk
我用它反复淡入淡出视图:

@SuppressLint("NewApi")
public void tintBackground() {
    View rootView = findViewById(android.R.id.content);
    ColorDrawable[] color = { new ColorDrawable(Color.RED),
            new ColorDrawable(Color.WHITE) };
    TransitionDrawable trans = new TransitionDrawable(color);
    int sdk = android.os.Build.VERSION.SDK_INT;
    if (sdk < android.os.Build.VERSION_CODES.JELLY_BEAN) {
        rootView.setBackgroundDrawable(trans);
    } else {
        rootView.setBackground(trans);
    }
    trans.startTransition(2000); // do transition over 2 seconds

}
    fadeIn = new AlphaAnimation(0.25f, 1);
    fadeIn.setInterpolator(new AccelerateInterpolator()); // add this
    fadeIn.setDuration(500);
    fadeIn.setFillAfter(true);
    fadeIn.setAnimationListener(new RepeatAnimationListener());

    fadeOut = new AlphaAnimation(1, 0.25f);
    fadeOut.setInterpolator(new DecelerateInterpolator()); // and this
    fadeOut.setDuration(500);
    fadeOut.setFillAfter(true);
    fadeOut.setAnimationListener(new RepeatAnimationListener());

private boolean currently_fadeOut;

private class RepeatAnimationListener implements AnimationListener {
    public void onAnimationEnd(Animation animation) {

        if (currently_fadeOut) {
            view.startAnimation(fadeIn);
            currently_fadeOut = false;
        } else {
            view.startAnimation(fadeOut);
            currently_fadeOut = true;
        }
    }

    public void onAnimationRepeat(Animation animation) {
    }

    public void onAnimationStart(Animation animation) {
    }
}

// automatically repeated because of RepeatAnimationListener 
view.startAnimation(fadeOut); 

动画背景你对此做了什么,因为对我来说它无法解决这只是动画运行的时间(以毫秒为单位),很抱歉出现了问题,并且。。您在哪里识别了mViewPager?mViewPager正是我应用转换的视图。将其替换为您的布局。在你的问题中,这将是线性布局x。不幸的是,它仍然运行,但是。。什么都没发生,知道吗?那个么你们在哪里能找到答案呢?你们需要显示onCreate方法的第35行,它显示了一个空指针异常thr