我在Eclipse中有一个全新的Android项目,一个活动只有一个简单的textview,黑色背景,没有别的。除了添加一些权限以便在互联网上听取一些建议之外,我没有修改任何内容。
当然有一些关于这个问题的线索,但大多数都被标记为error opening trace file: No such file or directory (2)的副本。但该线程中的解决方案是“重新安装所有内容” - 这对我来说不是一个好的答案。我想知道什么是错的,怎么做才能修复它。
请帮助我得到一个答案,我真的明白这里有什么问题。
正如我所说,这是一个新的Eclipse项目,但是如果你需要一些代码,请写下评论。
在此先感谢您的帮助。
编辑:
我的宣言:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.yellowjello.sejmipolitika"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
<activity
android:name=".Main"
android:screenOrientation="landscape" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
我的java:
package com.yellowjello.sejmipolitika;
import android.app.Activity;
import android.os.Bundle;
public class Main extends Activity{
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
@Override
public void onBackPressed() {
super.onBackPressed();
this.finish();
System.exit(0);
}
}
我的xml代码:
<FrameLayout 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"
tools:context=".Main" >
<!--
The primary full-screen view. This can be replaced with whatever view
is needed to present your content, e.g. VideoView, SurfaceView,
TextureView, etc.
-->
<!--
This FrameLayout insets its children based on system windows using
android:fitsSystemWindows.
-->
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView" />
</FrameLayout>
没有更多。它很干净。