
android
fkjslee
无
展开
-
搭建Eclipse下的Android开发环境
需要java环境 : 如果没有可以见链接 http://blog.youkuaiyun.com/fkjslee/article/details/51837848下载eclipse + adt : http://pan.baidu.com/s/1i5LLeXv 由于是绿色软件, 直接解压就可以用了,直接打开原创 2016-07-06 15:44:24 · 261 阅读 · 0 评论 -
android_项目的简单创建和生成
创建 File->new->android application project->取一个名字->不停回车->得到最基本的结构 PS: 如果找不到android application project 可以再other里面的Android里面找到 部分截图 生成对着项目右键->Export->Android->Export Android Application->选project->选原创 2016-07-06 16:16:02 · 357 阅读 · 0 评论 -
android_结构
目录 功能 src 存放java源代码 gen 存放系统配置文件, 自动生成, 不用管, 一般都是一些宏定义 android 4.4… 包括Android SDK库和APIs的一些包 asssets 存放资源文件, 但不会自动生成ID且不会自动占用空间 bin 被编译后的一些文件, 不用管 res 存放所有的应用资源, 会占用空间, 里面包括各种分辨原创 2016-07-06 16:49:36 · 228 阅读 · 0 评论 -
android_监听事件
匿名内部类假设控件是loginButton 1. 初始化控件 private Button loginButton = (Button)findViewById(R.id.button1)在ui界面的时候当拖入Button就会在R文件中生成对应名字(假设是button1的)的ID, 在findViewById中找到对应的ID, 并返回view类, 再强制转化为Button 2. 设置Butto原创 2016-07-07 16:10:57 · 387 阅读 · 0 评论 -
android_控件属性
总述 属性 内容(下面都指的是空间的属性) android:id id(在R文件里面会用宏来定义) android:layout_width 宽度 android:layout_height 高度 android:layout_text 文本内容 android:textSize 文本大小 android:textColor 文本颜色 and原创 2016-07-06 16:56:52 · 328 阅读 · 0 评论 -
android_控件
略 控件 功能 位置 备注 TextView 显示文本 Form Widgets->TextView EditText 编辑文本 Text Field->plain Text ImageView 显示图片 Image&Media->ImageView Button 文本按钮 Form Widgets->Button原创 2016-07-07 10:24:32 · 333 阅读 · 0 评论 -
Genymotion下载慢的解决办法
点击要下载的虚拟机 在C:\Users\xxx\AppData\Local\Genymobile\找到genymotion.log(xxx是你的用户名) 找到在downloading files后面http开头的网址(ctrl+f) 打开网址下载或者直接输入网址下载 替换在C:\Users\xxx\AppData\Local\Genymobile\Genymotion\ova中的对应文件原创 2017-02-11 17:20:47 · 726 阅读 · 0 评论