一、错误:Unknown host api.tudou.com, throwing UnknownHostException。

解决办法:在AndroidManifest.xml中添加<uses-permission android:name="android.permission.INTERNET" />

二、Unable to find explicit activity class have you declared this activity in your AndroidManifest.xml?

解决办法:在AndroidManifest.xml的application段添加声明:<activity android:name=".ActivityName" />,详情见:

http://stackoverflow.com/questions/736571/using-intent-in-an-android-application-to-show-another-activity

三、ListActivity setContentView错误:

代码及相关xml如下:

main.xml:

<ListView android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:drawSelectorOnTop="false"/>

tudouPlayer.java:

public class tudouPlayer extends ListActivity implements OnClickListener {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}

编译不会报错,运行时,adb打出来的错误为:

E/AndroidRuntime( 701): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.java.tudouPlayer/com.java.tudouPlayer.tudouPlayer}: java.lang.RuntimeException: Your content must have a ListView whose id attribute is 'android.R.id.list'

解决办法:

将main.xml中,上面贴出来的那段改为(原因见注释):

<!-- Here is the list. Since we are using a ListActivity, we
have to call it "@android:id/list" so ListActivity will
find it -->

<ListView android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:drawSelectorOnTop="false"/>

四、adb push错误

mksdcard 1024M sdcard1.iso

adb push android.jpg /sdcard/android.jpg

error:failed to copy 'android.jpg' to '/sdcard/android.jpg': Read-only file system

解决办法:

删除sdcard1.iso;

mksdcard 1024M sdcard

adb push android.jpg /sdcard/android.jpg

更多相关文章

  1. Android Studio 运行时出现 finished with non-zero exit value
  2. android 错误记录
  3. Android4.0 Design之UI设计易犯的错误1
  4. android studio 3.0 build错误
  5. android studio 降低项目版本错误,no resource found
  6. android使用ant编译找不到apkbuilder.jar的错误的解决方法
  7. android编译错误,Android requires compiler compliance level 5.
  8. Eclipse Android project name有错误, source tree无红叉解决办法

随机推荐

  1. Android(安卓)-- 文字设置超链接
  2. 学习android的博客
  3. Android(安卓)获得当前进程PackageName
  4. Android(安卓)VelocityTracker使用总结
  5. android 获取sd卡根目录
  6. 防止Android点击按钮过快造成多次事件实
  7. 直播源码用Glide框架缓存压缩图片做一个
  8. android Handler内存泄露 kotlin内存泄露
  9. Android点击EditText以外区域隐藏键盘Fra
  10. Android(安卓)全屏显示