最近android很火,老能看到新闻,咱也得与时俱进一下,按照官方文档学习了下,发现运行HelloTabWidget这个例子时报错,Google了一下,发现这个问题历史挺悠久的,目前按照
http://developer.android.com/resources/tutorials/views/hello-tabwidget.html来做,需要做如下即可运行正常:
1、在res.draw下面添加:
ic_tab_artists.xml
ic_tab_artists_grey.png
ic_tab_artists_white.png
ic_tab_songs.xml
ic_tab_songs_white.png
ic_tab_songs_grey.png
xml内容参照ic_tab_artists.xml
2、修改AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.helloandroid"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".HelloTabWidget"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".AlbumsActivity" android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">
</activity>
<activity android:name=".ArtistsActivity" android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">
</activity>
<activity android:name=".SongsActivity" android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">
</activity>
</application>
</manifest>
这个文档做了说明,但很含糊
分享到:
相关推荐
he connection to adb is down, and a severe error has occured.[2014-01-14 21:42:11 - myBluetooth] You must ...\Android\adt-bundle-windows-x86-20131030\sdk\platform-tools\adb.exe' and can be executed.
这个不报错版本确保了无论是通过虚拟机还是真机运行,都能顺畅无阻,对于初、中、高级Android工程师来说,都是提升技能的理想工具。 一、Android ApiDemos的核心价值 ApiDemos的主要价值在于它详尽地展示了Android...
Android N 代码编译报错解决方案 Android N 代码编译报错是 Android 开发中常见的问题之一, especially when multiple developers are working on the same project on the same server. 在本文中,我们将详细...
android安装环境报错解决方法 A folder failed to be renamed or moved--安装Android
draw9patch.bat运行报错,将下载的文件放入你的android sdk\tools\lib里面。
最新版android support v4包 解决Android6.0权限导包报错问题 包含ActivityCompat.OnRequestPermissionsResultCallback onRequestPermissionsResult
总之,解决Win 7下Android虚拟机版本报错问题通常需要对系统环境进行诊断和优化,包括更新系统文件、配置AVD参数以及确保必要的硬件支持。在进行任何修改之前,始终做好数据备份,遵循安全最佳实践,以防止不必要的...
Eclipse导入android项目包xml报错解决方案 Eclipse导入android项目包xml报错是一个常见的问题,尤其是在使用appcompat_v7包时。下面是解决这个问题的详细步骤: 步骤1:导入项目 当我们导入android项目包xml时,...
在Android开发过程中,有时会遇到集成OpenCV库时出现初始化报错的问题,导致"OpenCV error: Cannot load info library for OpenCV"。这个问题通常与OpenCV库的安装、配置、依赖或版本不兼容有关。以下是一些详细的...
现象: … java: 1801: method does not override a method from its superclass @Override… 原因: Eclipse is defaulting to Java 1.5 and you have classes implementing interface methods (which in Java 1.6 ...
然而,混淆过程中可能会遇到一些问题,本篇文章将详细讲解Android混淆的原理、步骤以及如何解决常见的报错。 1. **混淆的基本原理** 混淆是通过改变类名、方法名、变量名来达到代码加密的效果,同时优化代码,移除...
总结来说,当遇到Android Studio中三方引用报错但项目能运行的问题时,开发者可以根据上述方案尝试解决问题。这些方案包括清除IDE内部缓存、删除特定配置文件夹,以及修改启动配置等。这些方法都旨在帮助开发者重置...
这个"Android ApiDemos不报错版本"是针对eclipse开发环境优化过的,确保在虚拟机和真实设备上都能流畅运行。 **一、Android API Demos简介** ApiDemos分为多个模块,每个模块都对应一个特定的Android API功能,如...
在编程和软件开发过程中,遇到错误是常有的事情,尤其是涉及到特定工具或框架时,如本文档主题"jack编译报错解决方案参考"所指的Jack工具。Jack是一款用于Java应用的高级编译器,主要服务于Android平台,旨在提高...
安装完 Android Studio 后启动,却报错如下: 代码如下:failed to create jvm error code -... 您可能感兴趣的文章:Android Studio 引用外部依赖时报错的解决方法androidstudio3.0使用butterknife报错解决的解决方法解
android studio 新建工程报错 Error:Could not resolve all files for configuration ‘:app:debugCompileClasspath’. > Could not resolve com.android.support:appcompat-v7:26.0.0-beta1. Required by: ...
Android 开发中gradle在打包编译的时候经常会报各种奇怪的错误,有的简单错误直接提供解决方案,有的报错就比较头疼,信息不完整,完全无法下手定位解决,所以这时候你就该学习一下gradle脚本,以及gradlew指令的...
localStorage在安卓内内置浏览器中报错解决,最好的解决的方法
eclipse导入appcompat项目报错解决办法 我们在eclipse导入开源项目后,经常会发现找不到类似Theme.AppCompat.Light.DarkActionBar的style,解决办法也比较简单,就是导入com.android.support:appcompat-v7包,不过又...