-1

我在 Eclipse 中有一个新的 Android 项目,一个活动和 TextView,仅此而已。我没有修改任何东西。当我尝试在手机上的 USB 上运行应用程序时(带有 android 4.1.1 的 zte v970m),我得到了

在控制台中

Installation failed due to invalid APK file!
Please check logcat output for more details.
Launch canceled!

在 LogCat 中

09-24 12:21:01.174: D/dalvikvm(584): Not late-enabling CheckJNI (already on)
09-24 12:21:01.854: E/Trace(584): error opening trace file: No such file or directory (2)
09-24 12:21:02.684: D/gralloc_goldfish(584): Emulator without GPU emulation detected.

请帮我找到解决方案。顺便说一句,AVD 一切正常。

我的.java

package com.example.testusbdebug;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

}

我的 .xml

<RelativeLayout 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"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:text="@string/hello_world" />

</RelativeLayout>

和我的清单

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

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="18" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.testusbdebug.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

</manifest>
4

1 回答 1

0

为了让你更容易,我会在http://developer.android.com/sdk/index.html重新下载整个包

于 2013-09-24T14:06:43.893 回答