android
文章平均质量分 70
kiwi小白
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Ubuntu下配置Intellij的Android开发环境
一、Android SDK安装1.安装java jdk2.安装android SDK,在网站上可以下载你所对应的操作系统的sdk:http://developer.android.com/sdk/index.html。我这里的是linux3.下载完成以后,得到android-sdk_r20.0.3-linux.tgz,解压。注:如果使用的是64位的linux系统,需要安装ia32-原创 2012-10-05 15:06:07 · 4809 阅读 · 0 评论 -
Head Fisrt Android Development读书笔记(6)Lists and Adapters
ListView = ScrollView[ ViewGroup[A View for Each Row] ]Adapter an interface whose implementations provide data and the display of that data used by the ListView.public class TimeTracker原创 2012-10-16 15:39:30 · 880 阅读 · 0 评论 -
Head Fisrt Android Development读书笔记(7)Multi Screep Apps
Screen Navigation1.Create a new Activity and configure it to use a new Layout2.Create an Intent3.Call startActivity or startActvityForResult to launch a new screen4.onActivityResult to deal wi原创 2012-10-19 10:27:58 · 860 阅读 · 0 评论 -
Head Fisrt Android Development读书笔记(1)Adding Behavior
Make a button action1. use the Button onClick attribute to declare the name of the action method2.Open the Activity that displays the layout with the Button3.Add a method with a name matching th原创 2012-10-07 23:10:36 · 961 阅读 · 0 评论 -
Head Fisrt Android Development读书笔记(3)When things take time
The activity lifecycleonCreate() : called when your activity is created and typically where layouts and configuration occurs -->onStart(): called when your activity is displayed on the screen. -->原创 2012-10-10 15:54:12 · 815 阅读 · 0 评论 -
Head Fisrt Android Development读书笔记(2)Working with Feeds
RSS (Really Simple Syndication)/res/drawable-hdpi/test_image.gif android:src="@drawable/test_image">SAXParser(cont.)Android Permission to access InternetUnknowHostException原创 2012-10-09 13:00:57 · 716 阅读 · 0 评论 -
Head Fisrt Android Development读书笔记(4)Multiple Device Support
in apk webserveradd the mime type application/vnd.android.package-archive fro the .apk extension portrait mode \ landscape mode intellijandroid2.3.3 :portrait:landscape:android 4.1 l原创 2012-10-11 12:25:33 · 765 阅读 · 0 评论 -
Head Fisrt Android Development读书笔记(7)Database Persistent
Creating the database Create a new class called TimeTrackerOpenHelper that extends SQLiteOpenHelper. Pass the database name and the database version to super. TimeTrackerOpenHelper(Context con原创 2012-11-02 14:59:39 · 993 阅读 · 0 评论
分享