gpt4 book ai didi

android - 添加帧动画android堆栈溢出错误

转载 作者:行者123 更新时间:2023-11-29 21:21:34 24 4
gpt4 key购买 nike

你好,有人可以帮我吗?我创建了一个布局,其中包含四个图像按钮和每个图像下的 TextView ,图像按钮曾经是 res/drawables 中的图像并添加到 android:src="eg"并且它工作得很好,直到..我最近了解到如何创建逐帧动画(我对此还是很陌生)所以我在图像按钮的背景中添加了一个动画(删除了 android:src="eg")并使用了 android 开发人员教程中的 touchevent 但后来更改了它所以图像在开始时运行,并且效果很好,所以我希望其他图像按钮也能效仿。我正在使用 .xml 动画列表,我一次添加了每个动画,我添加了第二个,它也运行良好但添加第三个给我一个堆栈溢出错误,我在这里读到它可能是因为嵌套viewgroups 但更改 xml 以显示动画图像按钮无济于事,我还尝试取出所有其他代码并积极缩小我的图像无济于事,并试图解释我的 logcat 让我相信它是一个 java 问题所以我列出我的logcat、xml 布局、drawable xml(动画列表)和 java 文件,感谢您提供的所有帮助。

日志

00:41:07.863  13090-13090/com.martinsapp.socialstories E/AndroidRuntime﹕
FATAL EXCEPTION: main
java.lang.RuntimeException: Unable to start activity
ComponentInfo{com.martinsapp.socialstories/com.martinsapp

.socialstories.animalsActivity}: android.view.InflateException: Binary XML file line

#29: Error inflating class <unknown>
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2224)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2274)
at android.app.ActivityThread.access$600(ActivityThread.java:150)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1276)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:213)
at android.app.ActivityThread.main(ActivityThread.java:5153)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:797)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:564)
at dalvik.system.NativeStart.main(Native Method)
Caused by: android.view.InflateException: Binary XML file line #29:
Error inflating class <unknown>
at android.view.LayoutInflater.createView(LayoutInflater.java:613)
at
com.android.internal.policy.impl.PhoneLayoutInflater.onCreateView
(PhoneLayoutInflater.java:56)
at android.view.LayoutInflater.onCreateView(LayoutInflater.java:660)
at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:685)
at android.view.LayoutInflater.rInflate(LayoutInflater.java:746)
at android.view.LayoutInflater.rInflate(LayoutInflater.java:749)
at android.view.LayoutInflater.inflate(LayoutInflater.java:489)
at android.view.LayoutInflater.inflate(LayoutInflater.java:396)
at android.view.LayoutInflater.inflate(LayoutInflater.java:352)
at
com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:277)
at android.app.Activity.setContentView(Activity.java:1881)
at
com.martinsapp.socialstories.animalsActivity.onCreate(animalsActivity.java:28)
at android.app.Activity.performCreate(Activity.java:5104)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1080)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2188)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2274)at
android.app.ActivityThread.access$600
(ActivityThread.java:150)
at android.app.ActivityThread$H.handleMessage

(ActivityThread.java:1276) at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:213)
at android.app.ActivityThread.main(ActivityThread.java:5153)
java.lang.reflect.Method.invokeNative(Native Method)
java.lang.reflect.Method.invoke(Method.java:511)
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:797)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:564)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.reflect.InvocationTargetException
at java.lang.reflect.Constructor.constructNative(Native Method)
at java.lang.reflect.Constructor.newInstance(Constructor.java:417)
at android.view.LayoutInflater.createView(LayoutInflater.java:587)
at com.android.internal.policy.impl.PhoneLayoutInflater.onCreateView
(PhoneLayoutInflater.java:56)

at android.view.LayoutInflater.onCreateView(LayoutInflater.java:660)
at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:685)
at android.view.LayoutInflater.rInflate(LayoutInflater.java:746)
at android.view.LayoutInflater.rInflate(LayoutInflater.java:749)
at android.view.LayoutInflater.inflate(LayoutInflater.java:489)
at android.view.LayoutInflater.inflate(LayoutInflater.java:396)
at android.view.LayoutInflater.inflate(LayoutInflater.java:352)at
com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:277)
at android.app.Activity.setContentView(Activity.java:1881)
at com.martinsapp.socialstories.animalsActivity.onCreate(animalsActivity.java:28)
at android.app.Activity.performCreate(Activity.java:5104)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1080)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2188)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2274)
at android.app.ActivityThread.access$600(ActivityThread.java:150)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1276)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:213)
at android.app.ActivityThread.main(ActivityThread.java:5153)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
atcom.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:797)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:564)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.StackOverflowError
at android.graphics.drawable.AnimationDrawable$AnimationState.<init>
(AnimationDrawable.java:319)
at android.graphics.drawable.AnimationDrawable.<init>
(AnimationDrawable.java:357)
at android.graphics.drawable.AnimationDrawable.<init>
(AnimationDrawable.java:87)
at android.graphics.drawable.Drawable.createFromXmlInner(Drawable.java:910)
at android.graphics.drawable.Drawable.createFromXml(Drawable.java:864)
at android.content.res.Resources.loadDrawable(Resources.java:1977)
at android.content.res.Resources.getDrawable(Resources.java:666)
at android.graphics.drawable.AnimationDrawable.inflate
(AnimationDrawable.java:282)
at android.graphics.drawable.Drawable.createFromXmlInner(Drawable.java:942)
at android.graphics.drawable.Drawable.createFromXml(Drawable.java:864)
at android.content.res.Resources.loadDrawable(Resources.java:1977)
at android.content.res.Resources.getDrawable(Resources.java:666)
at android.graphics.drawable.AnimationDrawable.inflate
(AnimationDrawable.java:282)
at android.graphics.drawable.Drawable.createFromXmlInner(Drawable.java:942)
at android.graphics.drawable.Drawable.createFromXml(Drawable.java:864)
at android.content.res.Resources.loadDrawable(Resources.java:1977)
at android.content.res.Resources.getDrawable(Resources.java:666)
at android.graphics.drawable.AnimationDrawable.inflate
(AnimationDrawable.java:282)
at android.graphics.drawable.Drawable.createFromXmlInner(Drawable.java:942)
at android.graphics.drawable.Drawable.createFromXml(Drawable.java:864)
at android.cont

xml布局

<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linear_layout">

<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:id="@+id/linear_layout2">


<ImageButton
android:id="@+id/cat_button"
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:contentDescription="@string/cat_button"
android:src="@drawable/cat"
android:scaleType="centerCrop"
android:cropToPadding="true"
android:onClick="cat_image"/>



<ImageButton
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:contentDescription="@string/dog_button"
android:id="@+id/ImageView_dog"
android:background="@drawable/movingdogmoves"
android:scaleType="centerCrop"
android:onClick="dog_image"
android:cropToPadding="true" />


</LinearLayout>

<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/linear_layout4">

<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/cat_text"
android:text="@string/activity1_cat"
android:textSize="23sp"
android:textStyle="bold|italic"
android:layout_weight="1"
android:gravity="center" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/activity3_dog"
android:textSize="23sp"
android:id="@+id/textView"
android:layout_gravity="right|center_vertical"
android:textStyle="bold|italic"
android:layout_weight="1"
android:gravity="center" />

</LinearLayout>

<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:id="@+id/linear_layout3">


<ImageButton
android:layout_width="match_parent"
android:layout_height="match_parent"
android:contentDescription="@string/duck_button"
android:layout_weight="1"
android:background="@drawable/movingduck"
android:id="@+id/ImageView"
android:scaleType="centerCrop"
android:cropToPadding="true"
android:onClick="duck_image"/>

<ImageButton
android:contentDescription="@string/cow_button"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:layout_weight="1"
android:id="@+id/ImageView_cow"
android:scaleType="centerCrop"
android:cropToPadding="true"
android:onClick="cow_image"/>


</LinearLayout>

<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/linear_layout5">

<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/duck_text"
android:text="@string/activity2_duck"
android:textSize="23sp"
android:textStyle="bold|italic"
android:layout_weight="1"
android:gravity="center"
android:paddingBottom="5dp" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/activity4_cow"
android:textSize="23sp"
android:id="@+id/cow_text"
android:layout_gravity="right|center_vertical"
android:textStyle="bold|italic"
android:layout_weight="1"
android:gravity="center"
android:paddingBottom="5dp" />



</LinearLayout>

</LinearLayout>

drawable animation xml(我有三个几乎相同的列表几乎相同的图像)

<animation-list
android:id="@+id/movingdog"
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/movingdogmoves" android:duration="150"/>
<item android:drawable="@drawable/movingdog1" android:duration="150"/>
<item android:drawable="@drawable/movingdog2" android:duration="150"/>
<item android:drawable="@drawable/movingdog3" android:duration="150"/>
<item android:drawable="@drawable/movingdog4" android:duration="150"/>
<item android:drawable="@drawable/movingdog5" android:duration="150"/>
<item android:drawable="@drawable/movingdog6" android:duration="150"/>
<item android:drawable="@drawable/movingdog7" android:duration="150"/>
<item android:drawable="@drawable/movingdog8" android:duration="150"/>


</animation-list>

Java 文件

package com.martinsapp.socialstories;

import android.content.Intent;
import android.os.Bundle;
import android.app.Activity;
import android.view.View;
import android.widget.Button;
import android.widget.ImageButton;
import android.widget.ImageView;

import android.graphics.drawable.AnimationDrawable;


public class animalsActivity extends Activity {
ImageButton imageButton;
ImageButton imageButton2;
ImageButton imageButton3;
ImageButton imageButton4;
Button button;

AnimationDrawable movingDuck;
AnimationDrawable movingCow;
AnimationDrawable movingDog;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_animals);

imageButton=(ImageButton)findViewById(R.id.cat_button);
imageButton2=(ImageButton)findViewById(R.id.dog_button);
imageButton3=(ImageButton)findViewById(R.id.imageView);
imageButton4=(ImageButton)findViewById(R.id.cow_button);
button=(Button)findViewById(R.id.button_next);
ImageView movingduck = (ImageView) findViewById(R.id.ImageView);
movingduck.setBackgroundResource(R.drawable.movingduck);
movingDuck = (AnimationDrawable) movingduck.getBackground();
movingDuck.start();
ImageView movingcow = (ImageView) findViewById(R.id.ImageView_cow);
movingcow.setBackgroundResource(R.drawable.movingcow);
movingCow = (AnimationDrawable) movingcow.getBackground();
movingCow.start();
ImageView movingdog = (ImageView) findViewById(R.id.ImageView_dog);
movingcow.setBackgroundResource(R.drawable.movingdogmoves);
movingDog = (AnimationDrawable) movingdog.getBackground();
movingDog.start();
}

public void cat_image(View view){
Intent intent = new Intent(this, CatActivity.class);
startActivity(intent);
}
public void dog_image(View view){
Intent intent = new Intent(this, DogActivity.class);
startActivity(intent);

}
public void cow_image(View view){
Intent intent = new Intent(this, CowActivity.class);
startActivity(intent);
}
public void duck_image(View view){
Intent intent = new Intent(this, duckActivity.class);
startActivity(intent);
}




}

最佳答案

我唯一能想到的是,您在这里递归引用相同的可绘制 XML:<item android:drawable="@drawable/movingdogmoves" android:duration="150"/> .

这是 movingdogmoves.xml 中吗? ?那会导致堆栈溢出

关于android - 添加帧动画android堆栈溢出错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20672029/

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