5

Eclipse でまったく新しい Android プロジェクトを作成しました。1 つのアクティビティに 1 つのシンプルなテキストビュー、黒い背景、他には何もありません。インターネット上のいくつかのアドバイスを聞くために、いくつかのアクセス許可を追加する以外は何も変更しませんでした。

もちろん、この問題に関するいくつかのスレッドがありますが、ほとんどの場合、エラー オープニング トレース ファイル: 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>

そこには何もありません。きれいです。

4

0 に答える 0