gpt4 book ai didi

android - E/AndroidRuntime(6696) : java. lang.RuntimeException: 无法启动 Activity ComponentInfo{com

转载 作者:行者123 更新时间:2023-11-29 00:32:28 27 4
gpt4 key购买 nike

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.thenewboston.travis"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="17" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".Splash"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".startingPoint"
android:label="@string/app_name" >
<intent-filter>
<action android:name="com.thenewboston.travis.STARTINGPOINT" />

<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>

</manifest>

1) 这是我的 xml list

package com.thenewboston.travis;


import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;

public class Splash extends Activity{

@Override
protected void onCreate(Bundle InstanceState) {
// TODO Auto-generated method stub
super.onCreate(InstanceState);
setContentView(R.layout.splash);
Thread timer = new Thread(){
public void run(){
try{
sleep(5000);
} catch (InterruptedException e){
e.printStackTrace();
}finally{
Intent openStartingPoint = new Intent("com.thenewboston.travis.STARTINGPOINT");
startActivity(openStartingPoint);
}
}
};
timer.start();

}


}

2) 这是我的 splash java Activity

package com.thenewboston.travis;


import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

public class startingPoint extends Activity {

int counter;
Button add, sub;
TextView display;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
counter = 0;
add = (Button) findViewById(R.id.bAdd);
sub = (Button) findViewById(R.id.bSub);
display = (TextView) findViewById(R.id.tvDisplay);
add.setOnClickListener(new View.OnClickListener() {

@Override
public void onClick(View v) {
// TODO Auto-generated method stub
counter += 1;
display.setText("Your total is" + counter);
}
});
sub.setOnClickListener(new View.OnClickListener() {

@Override
public void onClick(View v) {
// TODO Auto-generated method stub
counter -= 1;
display.setText("Your total is" + counter);
}
});
}

}

3)那是我的起点 java Activity

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

<TextView
android:id="@+id/tvDisplay"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:text= "@string/text"
android:textSize="@string/text_size" />

<Button
android:id="@+id/bAdd"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="@string/atext"
android:textSize="@string/btext_size" />

<Button
android:id="@+id/bSub"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="@string/stext"
android:textSize="@string/btext_size" />

</LinearLayout>

4) 这是我的主要 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:background="@drawable/splash">


</LinearLayout>

5)这是我的splash xml

01-30 17:43:17.396: E/(7511): <s3dReadConfigFile:75>: Can't open file for reading
01-30 17:43:17.396: E/(7511): <s3dReadConfigFile:75>: Can't open file for reading
01-30 17:43:22.391: E/AndroidRuntime(7511): FATAL EXCEPTION: main
01-30 17:43:22.391: E/AndroidRuntime(7511): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.thenewboston.travis/com.thenewboston.travis.startingPoint}: android.view.InflateException: Binary XML file line #9: Error inflating class <unknown>
01-30 17:43:22.391: E/AndroidRuntime(7511): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2088)
01-30 17:43:22.391: E/AndroidRuntime(7511): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2113)
01-30 17:43:22.391: E/AndroidRuntime(7511): at android.app.ActivityThread.access$700(ActivityThread.java:139)
01-30 17:43:22.391: E/AndroidRuntime(7511): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1224)
01-30 17:43:22.391: E/AndroidRuntime(7511): at android.os.Handler.dispatchMessage(Handler.java:99)
01-30 17:43:22.391: E/AndroidRuntime(7511): at android.os.Looper.loop(Looper.java:137)
01-30 17:43:22.391: E/AndroidRuntime(7511): at android.app.ActivityThread.main(ActivityThread.java:4918)
01-30 17:43:22.391: E/AndroidRuntime(7511): at java.lang.reflect.Method.invokeNative(Native Method)
01-30 17:43:22.391: E/AndroidRuntime(7511): at java.lang.reflect.Method.invoke(Method.java:511)
01-30 17:43:22.391: E/AndroidRuntime(7511): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1004)
01-30 17:43:22.391: E/AndroidRuntime(7511): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:771)
01-30 17:43:22.391: E/AndroidRuntime(7511): at dalvik.system.NativeStart.main(Native Method)
01-30 17:43:22.391: E/AndroidRuntime(7511): Caused by: android.view.InflateException: Binary XML file line #9: Error inflating class <unknown>
01-30 17:43:22.391: E/AndroidRuntime(7511): at android.view.LayoutInflater.createView(LayoutInflater.java:613)
01-30 17:43:22.391: E/AndroidRuntime(7511): at com.android.internal.policy.impl.PhoneLayoutInflater.onCreateView(PhoneLayoutInflater.java: 56)
01-30 17:43:22.391: E/AndroidRuntime(7511): at android.view.LayoutInflater.onCreateView(LayoutInflater.java:660)
01-30 17:43:22.391: E/AndroidRuntime(7511): at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:685)
01-30 17:43:22.391: E/AndroidRuntime(7511): at android.view.LayoutInflater.rInflate(LayoutInflater.java:746)
01-30 17:43:22.391: E/AndroidRuntime(7511): at android.view.LayoutInflater.inflate(LayoutInflater.java:489)
01-30 17:43:22.391: E/AndroidRuntime(7511): at android.view.LayoutInflater.inflate(LayoutInflater.java:396)
01-30 17:43:22.391: E/AndroidRuntime(7511): at android.view.LayoutInflater.inflate(LayoutInflater.java:352)
01-30 17:43:22.391: E/AndroidRuntime(7511): at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:306)
01-30 17:43:22.391: E/AndroidRuntime(7511): at android.app.Activity.setContentView(Activity.java:1901)
01-30 17:43:22.391: E/AndroidRuntime(7511): at com.thenewboston.travis.startingPoint.onCreate(startingPoint.java:19)
01-30 17:43:22.391: E/AndroidRuntime(7511): at android.app.Activity.performCreate(Activity.java:5048)
01-30 17:43:22.391: E/AndroidRuntime(7511): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1094)
01-30 17:43:22.391: E/AndroidRuntime(7511): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2052)
01-30 17:43:22.391: E/AndroidRuntime(7511): ... 11 more
01-30 17:43:22.391: E/AndroidRuntime(7511): Caused by: java.lang.reflect.InvocationTargetException
01-30 17:43:22.391: E/AndroidRuntime(7511): at java.lang.reflect.Constructor.constructNative(Native Method)
01-30 17:43:22.391: E/AndroidRuntime(7511): at java.lang.reflect.Constructor.newInstance(Constructor.java:417)
01-30 17:43:22.391: E/AndroidRuntime(7511): at android.view.LayoutInflater.createView(LayoutInflater.java:587)
01-30 17:43:22.391: E/AndroidRuntime(7511): ... 24 more
01-30 17:43:22.391: E/AndroidRuntime(7511): Caused by: java.lang.UnsupportedOperationException: Can't convert to dimension: type=0x3
01-30 17:43:22.391: E/AndroidRuntime(7511): at android.content.res.TypedArray.getDimensionPixelSize(TypedArray.java:463)
01-30 17:43:22.391: E/AndroidRuntime(7511): at android.widget.TextView.<init> (TextView.java:898)
01-30 17:43:22.391: E/AndroidRuntime(7511): at android.widget.TextView.<init> (TextView.java:556)
01-30 17:43:22.391: E/AndroidRuntime(7511): ... 27 more

6) 这是我的日志猫

7) 此代码运行初始屏幕,但当 5000 毫秒完成时它崩溃了????

最佳答案

来自 LogCat:

Caused by: java.lang.UnsupportedOperationException: Can't convert to dimension: type=0x3
at android.content.res.TypedArray.getDimensionPixelSize(TypedArray.java:463)
at android.widget.TextView.<init> (TextView.java:898)
at android.widget.TextView.<init> (TextView.java:556)

我不认为文本大小可以用字符串表示。

<TextView
...
android:textSize="@string/text_size" />

尝试为所有 View 硬编码此值:

<TextView
...
android:textSize="16sp" />

如果有效,请查看 Styles and Themes了解为每个 View 设置一种文本大小的适当方法。

关于android - E/AndroidRuntime(6696) : java. lang.RuntimeException: 无法启动 Activity ComponentInfo{com,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14615183/

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