Android应用无法在真实设备上运行,但可以识别它

时间:2014-07-14 13:47:04

标签: android

我正在尝试编写我的第一个Android应用程序。 Eclipse确实识别我的手机,但无法在其上启动应用程序。无法按下“确定”按钮。

有什么想法吗? 感谢

enter image description here

xml文件:

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

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

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".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>

解决。

问题在于我的手机。 我检查了另一台设备,没关系。

谢谢,抱歉打扰。

1 个答案:

答案 0 :(得分:0)

  1. 使用Eclipse中的SDK检查您的Android SDK Manager是否是最新的。如果不更新它。安装所需的min sdk versionmax sdk version个包。
  2. 检查PC上是否安装了相应设备的OEM drivers,并激活了手机上的开发人员选项。要了解什么是OEM驱动程序,请检查此link
  3. 最后检查USB线中的硬件连接是否松动,然后拔下插头并重新插上。 :):P