package com.example.wang.testapp2; import android.app.AlertDialog; import android.content.DialogInterface; import android.content.Intent; import andro ...
分类:
移动开发 时间:
2016-05-14 11:28:18
阅读次数:
273
设置透明效果 大概有三种. 1、用android系统的透明效果: android:background="@android:color/transparent" 例如 设置按钮 <Button android:background="@android:color/transparent" andro ...
分类:
其他好文 时间:
2016-05-13 07:26:52
阅读次数:
131
这份知道文档旨在描述如何安装Android 开发环境
一、我们能够学到什么
1、安装开发Android APP需要的工具,2、需要的话创建Android 条是模拟器 AVD
二、需要准备什么
1、15min时间
2、喜欢的文本编辑器或IDE
3、JDK 1.7 或更新版本
三、设置Android 开发环境
在创建Android 应用前,我们需要安装Andro...
分类:
移动开发 时间:
2016-05-13 03:58:35
阅读次数:
172
1.直接通过URL网址打开网页显示内容:loadUrl()
首先在布局中写一个WebView的控件
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.andro...
分类:
移动开发 时间:
2016-05-12 18:09:51
阅读次数:
251
项目当中用到了ListView ,今天抽出时间整理了一下ListView的简单用法。
public class MainActivity extends AppCompatActivity
implements NavigationView.OnNavigationItemSelectedListener ,AdapterView.OnItemClickListener,Ab...
分类:
其他好文 时间:
2016-05-12 16:42:22
阅读次数:
451
ColorStateList value = new ColorStateList(states, colors);看到ColorStateList的构造方法,我们知道要想获得一个ColorStateList,需要有一个int[][]
和一个存放ColorRes的
int[]
先看看一个很常用selector结构的color.xml
<selector
xmlns:andro...
分类:
其他好文 时间:
2016-05-12 14:27:55
阅读次数:
189
首先看一下效果图下载地址Demo
废话不多说上代码了首先看我们自定义的可以设置是否可以滑动的viewpagerpackage cn.yuan.banner;import android.content.Context;
import android.support.v4.view.ViewPager;
import android.util.AttributeSet;
import andro...
分类:
移动开发 时间:
2016-05-12 13:35:30
阅读次数:
246
这是翻译官方的文档,英语好的可以直接去官方文档查看,英语不好,大家就将就看吧,算是我翻译的第一篇技术文章,因为是个英语渣,技术也渣,所以最近在学英语,就尝试着自己来翻译,不过翻译有不好的地方,大家可以指出来,我会在以后的翻译中慢慢改进。
以后我也会尝试者每周翻译一篇英文技术文章,如果你有好的学习英语和翻译方面的技巧,欢迎与我交流。
原文链接:http://developer.andro...
分类:
移动开发 时间:
2016-05-12 11:31:30
阅读次数:
317
上一篇博文我们探讨了百度地图的SDK的环境集成与搭建,这篇文章将介绍如何在百度地图上进行标注。
1、在activity_main.xml中新建bmapView<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
andro...
分类:
移动开发 时间:
2016-05-11 07:18:51
阅读次数:
214
//布局 activity_main.xml <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" andro ...
分类:
其他好文 时间:
2016-05-10 23:10:05
阅读次数:
272