- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
根据 this问题,我的应用程序抛出看似随机的错误。每当我添加重大更改(新资源、新代码、函数调用)等时,运行良好的代码就会开始崩溃。 Activity 根本不会启动。 logcat 输出告诉我 XML 文件有错误。不幸的是,我没有碰过那个文件。仔细观察它,它还告诉我一些关于在动画 XML 文件中找不到的颜色资源的信息。 logcat 输出连同代码如下:
E/ActivityThread( 54): Failed to find provider info for android.server.checkin
E/AndroidRuntime( 241): Uncaught handler: thread main exiting due to uncaught exception
E/AndroidRuntime( 241): java.lang.RuntimeException: Unable to start activity ComponentInfo{uris.apps.com/uris.apps.com.PlayGame}: android.view.InflateException: Binary XML file line #18: Error inflating class uris.apps.com.ClockTextView
E/AndroidRuntime( 241): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2496)
E/AndroidRuntime( 241): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2512)
E/AndroidRuntime( 241): at android.app.ActivityThread.access$2200(Activi tyThread.java:119)
E/AndroidRuntime( 241): at android.app.ActivityThread$H.handleMessage(Ac tivityThread.java:1863)
E/AndroidRuntime( 241): at android.os.Handler.dispatchMessage(Handler.ja va:99)
E/AndroidRuntime( 241): at android.os.Looper.loop(Looper.java:123)
E/AndroidRuntime( 241): at android.app.ActivityThread.main(ActivityThrea d.java:4363)
E/AndroidRuntime( 241): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 241): at java.lang.reflect.Method.invoke(Method.java:5 21)
E/AndroidRuntime( 241): at com.android.internal.os.ZygoteInit$MethodAndA rgsCaller.run(ZygoteInit.java:860)
E/AndroidRuntime( 241): at com.android.internal.os.ZygoteInit.main(Zygot eInit.java:618)
E/AndroidRuntime( 241): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime( 241): Caused by: android.view.InflateException: Binary XML fi le line #18: Error inflating class uris.apps.com.ClockTextView
E/AndroidRuntime( 241): at android.view.LayoutInflater.createView(Layout Inflater.java:513)
E/AndroidRuntime( 241): at android.view.LayoutInflater.createViewFromTag (LayoutInflater.java:565)
E/AndroidRuntime( 241): at android.view.LayoutInflater.rInflate(LayoutIn flater.java:618)
E/AndroidRuntime( 241): at android.view.LayoutInflater.inflate(LayoutInf later.java:407)
E/AndroidRuntime( 241): at android.view.LayoutInflater.inflate(LayoutInf later.java:320)
E/AndroidRuntime( 241): at android.view.LayoutInflater.inflate(LayoutInf later.java:276)
E/AndroidRuntime( 241): at com.android.internal.policy.impl.PhoneWindow. setContentView(PhoneWindow.java:198)
E/AndroidRuntime( 241): at android.app.Activity.setContentView(Activity. java:1622)
E/AndroidRuntime( 241): at uris.apps.com.PlayGame.onCreate(PlayGame.java :41)
E/AndroidRuntime( 241): at android.app.Instrumentation.callActivityOnCre ate(Instrumentation.java:1047)
E/AndroidRuntime( 241): at android.app.ActivityThread.performLaunchActiv ity(ActivityThread.java:2459)
E/AndroidRuntime( 241): ... 11 more
E/AndroidRuntime( 241): Caused by: java.lang.reflect.InvocationTargetException
E/AndroidRuntime( 241): at uris.apps.com.ClockTextView.<init>(ClockTextV iew.java:29)
E/AndroidRuntime( 241): at java.lang.reflect.Constructor.constructNative (Native Method)
E/AndroidRuntime( 241): at java.lang.reflect.Constructor.newInstance(Con structor.java:446)
E/AndroidRuntime( 241): at android.view.LayoutInflater.createView(Layout Inflater.java:500)
E/AndroidRuntime( 241): ... 21 more
E/AndroidRuntime( 241): Caused by: android.content.res.Resources$NotFoundExcept ion: File res/anim/score_rotate.xml from color state list resource ID #0x7f04000 0
E/AndroidRuntime( 241): at android.content.res.Resources.loadColorStateL ist(Resources.java:1813)
E/AndroidRuntime( 241): at android.content.res.Resources.getColor(Resour ces.java:626)
E/AndroidRuntime( 241): at uris.apps.com.ClockTextView.init(ClockTextVie w.java:42)
E/AndroidRuntime( 241): ... 25 more
E/AndroidRuntime( 241): Caused by: org.xmlpull.v1.XmlPullParserException: Binar y XML file line #3: invalid drawable tag set
E/AndroidRuntime( 241): at android.content.res.ColorStateList.createFrom XmlInner(ColorStateList.java:144)
E/AndroidRuntime( 241): at android.content.res.ColorStateList.createFrom Xml(ColorStateList.java:127)
E/AndroidRuntime( 241): at android.content.res.Resources.loadColorStateL ist(Resources.java:1810)
E/AndroidRuntime( 241): ... 27 more
E/gralloc ( 54): [unregister] handle 0x4d08b0 still locked (state=40000001)
动画资源为:
<?xml version="1.0" encoding="utf-8"?>
<set
xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/linear_interpolator"
>
<rotate
android:fromDegrees="-45"
android:toDegrees="-45"
android:pivotX="75%"
android:pivotY="100%"
android:duration="1"
android:repeatCount="infinite"
>
</rotate>
</set>
PlayGame 类是
package uris.apps.com;
import android.widget.*;
import android.widget.AdapterView.*;
import android.app.Activity;
import android.os.Bundle;
import android.view.*;
import android.view.View.*;
import android.content.*;
import android.graphics.PorterDuff.Mode;
/* the PlayGame class coordinates: (1) the TreeGenerator (which is
* actually the underlying board, I don't know why I called it
* TreeGenerator), (2) the GameGridView that displays the pictures, (3)
* the progress bar, (4) the running clock. */
public class PlayGame extends Activity
{
private GameGridView mGameGridView;
private TreeGenerator mTree;
private ImageAdapter mAdapter;
private ClockTextView mRunningClock;
//debug
private TextView mTextView;
// Menu
static final private int RESTART = Menu.FIRST;
static final private int BACK = Menu.FIRST + 1;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//get settings from OptionsMenu
Intent settings=getIntent();
int difficulty = settings.getIntExtra("level",
TreeGenerator.EASY);
//create progress bar - must be called before setcontentview
requestWindowFeature(Window.FEATURE_PROGRESS);
setContentView(R.layout.play_game);
//Set up TreeGenerator
//difficulty = TreeGenerator.HARD;
mTree = new TreeGenerator(12, difficulty, 3); // no art pieces,
// difficulty, no
// of stages
//Set up GridView
mGameGridView = (GameGridView) findViewById(R.id.game_grid_view);
mAdapter = new ImageAdapter(this, mTree);
mGameGridView.setAdapter(mAdapter);
//Set up RunningClock
mRunningClock = (ClockTextView) findViewById(R.id.running_clock);
mRunningClock.initStartTime();
//Call this method when user selects an image
mGameGridView.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent,
View v,
int position,
long id) {
TreeGenerator mTree = PlayGame.this.mTree;
//check answer
boolean result = mTree.checkAnswer(position);
String text = "Almost!";
PlayGame.this.mGameGridView.deselect(); //if any
if ( result ) { // if answer correct
text = "Correct!";
//update text view
PlayGame.this.mGameGridView.flashGreen(position);
}
else {
PlayGame.this.mGameGridView.flashRed(position);
}
//check if game complete
if ( mTree.gameComplete() ) {
mTree.nextGame();
//PlayGame.this.mRunningClock.stop();
//tally score/calculate scores
//: max_score = no_stages * 1000;
//: ideal_time = 2 * no_stages + 4;
//: f(time,stage) = 1/time * max_score * ideal_time;
float time = PlayGame.this.mRunningClock
.getRunningTime();
float max_score = mTree.getStages() * 1000.0f;
float ideal_time = 2.0f * mTree.getStages() + 4.0f;
Score.time_bonus = (int) (1.0f / time * max_score * ideal_time);
PlayGame.this.mRunningClock.initStartTime();
Intent scoreReport = new
Intent(
PlayGame.this,
uris.apps.com.ScoreReport.class
);
scoreReport.putExtra("score",Score.score);
scoreReport.putExtra("incorrect",Score.incorrect_penal);
scoreReport.putExtra("timebonus",Score.time_bonus);
scoreReport.putExtra("noerrorbonus",Score.error_bonus);
startActivity(scoreReport);
}
//update pictures
PlayGame.this.mGameGridView.updateImages();
//update progress bar
PlayGame.this.updateProgressBar();
if ( MyDebug.playGameDebug ) {
//say if correct or not
Toast.makeText(PlayGame.this,
text + " " + position,
Toast.LENGTH_SHORT).show();
}
}
});
if ( MyDebug.playGameDebug) {
Toast.makeText(PlayGame.this,
"Level: "+String.valueOf(difficulty),
Toast.LENGTH_SHORT).show();
mTextView = (TextView) findViewById(R.id.textview);
mTextView.setText(
mTree.toString()
//+ "\n" + "Item sel: " + position
);
}
//init progress bar
getWindow().setFeatureInt(Window.FEATURE_PROGRESS, 0);
}
play_game.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">
<uris.apps.com.GameGridView
android:id="@+id/game_grid_view"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:columnWidth="90dp"
android:numColumns="auto_fit"
android:verticalSpacing="10dp"
android:horizontalSpacing="10dp"
android:stretchMode="columnWidth"
android:gravity="center"
/>
<uris.apps.com.ClockTextView
android:id="@+id/running_clock"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#ffffff"
android:textSize="50sp"
/>
<!--Debug -->
<TextView
android:id="@+id/textview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
时钟 View :
package uris.apps.com;
import android.content.Context;
import android.content.res.Resources;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.util.AttributeSet;
import android.widget.TextView;
import android.os.SystemClock;
public class ClockTextView extends TextView {
private Paint textPaintColor;
private long startTime;
private float secs;
public ClockTextView (Context context, AttributeSet ats, int ds) {
super(context, ats, ds);
init();
}
public ClockTextView (Context context) {
super(context);
init();
}
public ClockTextView (Context context, AttributeSet attrs) {
super(context, attrs);
init();
}
public void initStartTime() {
startTime = SystemClock.uptimeMillis();
}
private void init() {
// Get a reference to our resource table.
Resources myResources = getResources();
// Create the paint brushes we will use in the onDraw method.
textPaintColor = new Paint(Paint.ANTI_ALIAS_FLAG);
textPaintColor.setColor(myResources.getColor(R.color.clockTextColor));
textPaintColor.setTextSize( 50 );
startTime = SystemClock.uptimeMillis();
// // Get the paper background color and the margin width.
// paperColor = myResources.getColor(R.color.notepad_paper);
//margin = myResources.getDimension(R.dimen.notepad_margin);
}
public float getRunningTime() {
return secs;
}
@Override
public void onDraw(Canvas canvas) {
//number of milliseconds elapsed
long curTime = SystemClock.uptimeMillis() - startTime;
//convert to seconds
secs = curTime / 1000.0f;
//Round to 1 decimal place
//float p = (float) Math.pow(10,1);
secs = (float) (Math.round(secs*10.0f)/10.0f);
canvas.drawText(String.valueOf(secs), 60, 60, textPaintColor);
// Color as paper
// canvas.drawColor(paperColor);
// // Draw ruled lines
// canvas.drawLine(0, 0, getMeasuredHeight(), 0, linePaint);
// canvas.drawLine(0, getMeasuredHeight(),
// getMeasuredWidth(), getMeasuredHeight(),
// linePaint);
// // Draw margin
// canvas.drawLine(margin, 0, margin, getMeasuredHeight(), marginPaint);
// // Move the text across from the margin
// canvas.save();
// canvas.translate(margin, 0);
// Use the TextView to render the text.
super.onDraw(canvas);
//canvas.restore();
invalidate();
}
}
最后是定义时钟颜色的资源:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="clockTextColor">#FFFFFF</color>
</resources>
最佳答案
感谢 CommonsWare。 XML 以某种方式不同步。可能是因为我没有使用 Eclipse。无论如何,解决方法是删除 bin 目录,重新编译并安装。
关于android - 应用程序运行良好,现在由于看似未知的原因而中断,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4547055/
我对cassandra并使用1.2.10非常陌生。我有一个时间戳数据类型的主键列。现在,我正在尝试检索日期范围的数据。由于我们知道不能在cassandra中使用,因此我使用的是大于()来获取日期范围。
我正在尝试进行有条件的转场。但我得到: Terminating app due to uncaught exception 'NSInvalidArgumentException', reas
我有一个游戏项目,在调试和发布模式下在设备上运行得非常好。我有两个版本。旧版本和新版本具有更多(后来我添加了)功能,并且两者的 bundle ID、版本相同。当我构建旧版本时,之前没有安装“myGam
这个问题已经有答案了: 奥 git _a (2 个回答) 已关闭 5 年前。 我正在获取 ClassCastException 。这两个类来自不同的 jar,但是JettyContinuationPr
以下代码行抛出异常: HttpResponse response = client.execute(request); // actual HTTP request 我能够捕获它并打印: Log
就目前情况而言,这个问题不太适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、民意调查或扩展讨论。如果您觉得这个问题可以改进并可能重新开放,visit
public class TwoThreads { private static Object resource = new Object(); private static void
当我输入 6 (int) 作为值时,运行此命令会出现段错误 (gcc filename.c -lm)。请帮助我解决这个问题。预期的功能尚未实现,但我需要知道为什么我已经陷入段错误。 谢谢! #incl
所以,过去一周半我一直在研究这个 .OBJ/.MTL 网格解析器。在这段时间里,我一直在追踪/修复很多错误、清理代码、记录代码等等。 问题是,每修复一个错误,仍然会出现这个问题,而且一张图片胜过一千个
我正在运行一个代码,它基本上围绕 3 个维度旋转一个大数据数组(5000 万行)。但是,我遇到了一个奇怪的问题,我已将其缩小到如何评估旋转矩阵。基本上,对于除绕 x 轴以外的任何旋转,python 代
就在你说这是重复之前,我已经看到了其他问题,但我仍然想发布这个。 所以我正在阅读 Thinking in Java -Bruce Eckel 这篇文章是关于小写命名约定的: In Java 1.0 a
我想在我的应用程序中使用 REST API。它为我从这个应用程序发出的所有请求抛出 SocketTimeoutException。 Logcat 输出:(您也可以在此处看到带有漂亮格式的输出:http
我知道 raise ... from None 并已阅读 How can I more easily suppress previous exceptions when I raise my own
在未能找到各种Unix工具(例如xargs和whatnot)的最新独立二进制文件(this version很好,但需要外部DLL)后,我承担了自己进行编译的挑战。 ...这是痛苦的。 最终,尽管如此,
我有一个用PHP编写的流套接字服务器。 为了查看一次可以处理多少个连接,我用C语言编写了一个模拟器来创建1000个不同的客户端以连接到服务器。 stream_socket_accept几次返回fals
我的Android Studio昨天运行良好,但是今天当我启动Android Studio并想在移动设备上运行应用程序时,发生了以下错误, 我在互联网和stackoverflow上进行了搜索,但没有解
默认情况下,grails似乎为Java域对象的toString()返回:。那当然不是我想要的,所以我尝试@Override toString()返回我想要的。当我尝试grails generate-a
尝试通过LDAP通过LDAP对用户进行身份验证时,出现以下错误。 Reason: Cannot pass null or empty values to constructor. 谁能告诉我做错了什么
我正在尝试使用应用程序附带的 Houdini Python 模块,该模块是 Houdini 安装文件夹的一部分,位于标准 Python 路径之外。按照安装说明操作后,运行 Houdini Termin
简单地说,我正在为基本数据库编写单链表的原始实现。当用户请求打印索引下列出的元素高于数据库中当前记录数量时,我不断出现段错误,但仅当差值为 1 时。对于更高的数字,它只会触发我在那里编写的错误系统。
我是一名优秀的程序员,十分优秀!