Android
文章平均质量分 56
普通网友
这个作者很懒,什么都没留下…
展开
-
Android高级控件----AdapterView与Adapter
http://cinderella7.blog.51cto.com/7607653/1281696在J2EE中提供过一种非常好的框架--MVC框架,实现原理:数据模型M(Model)存放数据,利用控制器C(Controller)将数据显示在视图V(View)上。在Android中有这样一种高级控件,他的实现过程就类似于MVC框架。之所以称它高级,是因为他的使用不像其他控件一样,拖拽到界转载 2013-12-30 10:07:11 · 746 阅读 · 0 评论 -
Android开发之TextView文本组件的…
找到我们的res文件夹下边的layout,打开activity_main.xml文件,里边的文件代码如下所示<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layou原创 2013-12-30 20:36:08 · 560 阅读 · 0 评论 -
Android开发之ImageView文本组件的…
1,将我们的图片复制到res下边的drawable-hdpi文件夹下边2,修改res下边的layout下边的xml文件<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" and原创 2013-12-30 20:37:01 · 745 阅读 · 0 评论 -
Android开发之ImageButton组件的使…
1,将我们的图片复制到res下边的drawable-hdpi文件夹下边2,修改res下边的layout下边的xml文件<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android原创 2013-12-30 20:37:03 · 590 阅读 · 0 评论 -
Android开发之日期选择器的使用
<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_原创 2013-12-30 20:37:08 · 1113 阅读 · 0 评论 -
Android框架布局FrameLayout的使用…
FrameLayout布局就是在屏幕上开辟一个区域以填充所有的组件,但是使用FrameLayout布局会将所有的组件都放在屏幕的左上角,而且所有的组件都可以层叠进行显示。<FrameLayoutxmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.androi原创 2013-12-30 20:37:16 · 649 阅读 · 0 评论 -
Android开发之绝对布局的使用
<AbsoluteLayoutxmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_p原创 2013-12-30 20:37:50 · 1273 阅读 · 0 评论 -
Android开发之onClick点击事件的使…
xml当中的数据 <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_he原创 2013-12-30 20:38:09 · 629 阅读 · 0 评论 -
Android开发之简单的四则运算器的…
xml文件<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="m原创 2013-12-30 20:38:11 · 2733 阅读 · 0 评论 -
Android开发之密码明文密文切换显…
.xml文件<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="m原创 2013-12-30 20:38:24 · 1304 阅读 · 0 评论 -
Android正则表达式2
1.元字符很多人对正则表达式的印象就是乱码。。许许多多的符号组合在一起,偶见单词,正则确实是这样的,所以下面我们要看看这些符号都是什么意思有些符号不是大家看到的字面上的意思:比如“.”、“!”、“?”……这些符号就称之为元字符很遗憾,这些字符的意义必须牢记注意:本文的所有红色加粗中文引号内的内容均为正则表达式,而不是一般的字符和符号下面我们逐一说明“\”:转义符号,在字符组内原创 2013-12-30 20:39:02 · 427 阅读 · 0 评论 -
Android开发之键盘事件,验证邮箱…
.xml<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="ma原创 2013-12-30 20:39:04 · 516 阅读 · 0 评论 -
Android开发之触摸事件的使用--触…
.xml文件<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="m原创 2013-12-30 20:39:08 · 446 阅读 · 0 评论 -
String.valueOf() 方法的使用
在读取数据时需要对数据的强制转换,可采用String.valueOf(a),把a强制转换成字符串类型有时候a本来就已经是字符串类型了,但是为了代码的严谨性,也会加入String.valueOf(a),这时String.valueOf(a)省略也不会出错的。但有时会涉及到服务器的问题,所以还是加入String.valueOf(a)比较好。原创 2013-12-30 20:40:04 · 836 阅读 · 0 评论 -
Android开发之列表对话框的使用
在values.xml新建interest.xml文件<?xmlversion="1.0" encoding="utf-8"?> <string-arrayname="selinterest"> 篮球 游泳 足球 游戏 main.xml<LinearLayoutxmlns:a原创 2013-12-30 20:40:33 · 479 阅读 · 0 评论 -
日期选择对话框
日期选择对话框.xml<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout原创 2013-12-30 20:40:51 · 588 阅读 · 0 评论 -
Android设置TextView能够滚动
private TextView text=null;this.text=(TextView)super.findViewById(R.id.text);//设置文本可以滚动this.text.setMovementMethod(ScrollingMovementMethod.getInstance());原创 2013-12-30 20:41:19 · 574 阅读 · 0 评论 -
Android开发拖动条实现照片的切换
.xml<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="ma原创 2013-12-30 20:41:21 · 507 阅读 · 0 评论 -
使用SeekBar组件调节屏幕亮度
Android手机里也可以通过程序进行屏幕亮度的调节,而这种操作往往就是通过SeekBar组件实现的,而要想实现亮度调节功能就必须android.view.Window类的screenBrightness属性实现,而此属性的取值范围是0~1(由暗到亮).xml<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/原创 2013-12-30 20:41:23 · 817 阅读 · 0 评论 -
自定义Toast组件
.xml <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height=原创 2013-12-30 20:41:36 · 513 阅读 · 0 评论 -
ImageView.ScaleType设置图解
http://blog.csdn.net/strliu/article/details/7284848ImageView的Scaletype决定了图片在View上显示时的样子,如进行何种比例的缩放,及显示图片的整体还是部分,等等。设置的方式包括:1. 在layout xml中定义android:scaleType="CENTER"2.或在代码中调用imageView.setS原创 2013-12-30 20:41:55 · 444 阅读 · 0 评论 -
android中的 gravity 和…
android:gravity:是对view控件本身来说的,是用来设置view本身的文本应该显示在view的什么位置,默认值是左侧android:layout_gravity:是相对于包含改元素的父元素来说的,设置该元素在父元素的什么位置比如TextView:android:layout_gravity表示TextView在界面上的位置,android:gravity表示TextVie原创 2013-12-30 20:42:21 · 401 阅读 · 0 评论 -
android:scaleType的使用
http://xiangqianppp-163-com.iteye.com/blog/1473540ImageView的属性android:scaleTypeImageView的属性android:scaleType,即 ImageView.setScaleType(ImageView.ScaleType)。android:scaleType是控制图片如何 resized/m原创 2013-12-30 20:42:23 · 1036 阅读 · 0 评论 -
Android中EditText属性
http://hi.baidu.com/huaxinchang/item/72790eefbb9e1e225b2d6401android:layout_gravity="center_vertical"//设置控件显示的位置:默认top,这里居中显示,还有bottomandroid:hint="请输入数字!"//设置显示在控件上的提示信息,控件上无值时显示android:numeric原创 2013-12-30 20:49:29 · 444 阅读 · 0 评论 -
Android表格布局
原创 2013-12-30 20:49:54 · 482 阅读 · 0 评论 -
Android帧布局-实现渐变效果
main.xml xmlns:tools="http://schemas.android.com/tools" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".Ma原创 2013-12-30 20:49:59 · 973 阅读 · 0 评论 -
时钟的功能与用法
原创 2013-12-30 20:50:51 · 849 阅读 · 0 评论 -
layer-list使用
http://blog.csdn.net/xiaochun91103/article/details/7438471最近的项目中需要用到多个图层堆叠到一块儿,就研究了一下android中的layer-list。android中的layer-list就是用来多个图层堆叠显示的。在drawable文件夹下创建一个xml文件。比如:background.xmlxmlns:android="h原创 2013-12-30 20:51:10 · 437 阅读 · 0 评论 -
Android进度条实例-实现模拟下载进…
XML文件.JAVA文件packagecom.example.progressbartest2;importandroid.os.Bundle;importandroid.os.Handler;importandroid.os.Message;importandroid.app.Activity;importandroid.widget.ProgressBar;原创 2013-12-30 20:51:16 · 1014 阅读 · 0 评论 -
星级评分条RatingBar的介绍
星级评分条和拖动条十分相似,RatingBar与SeekBar的最大区别在于RatingBar通过星星来表示进度为了让程序能响应星级评分条评分的改变,程序可以考虑为它绑定一个OnRatingBarChangeListener监听器原创 2013-12-30 20:51:25 · 880 阅读 · 0 评论 -
LayoutInflater类的使用
在实际开发中LayoutInflater这个类非常有用,作用类似于findViewById()不同点是LayoutInflater是用来找layout下的xml布局文件,而且实例化,而findViewById()是我们具体XML下的widget控件LayoutInflater.from(this).inflate(R.layout.activity_main,tabHost.getTabCo原创 2013-12-30 20:51:27 · 542 阅读 · 0 评论 -
TabHost使用实例
原创 2013-12-30 20:51:29 · 572 阅读 · 0 评论 -
Android中Adapter的学习与思考
http://blog.csdn.net/lcore/article/details/8665027我们知道Adapter就是适配器的意思。在GOF设计模式中存在一种设计模式,即是适配器模式(Adapter)。 对设计模式的学习使我们知道:适配器模式能够将一个接口转换为客户所期望的另一个接口,使得原来由 与接口不兼容而不能一切工作的类可以一起工作。 举个简原创 2013-12-30 20:51:35 · 764 阅读 · 0 评论 -
ListView列表视图的介绍和使用
ListView是手机系统中使用非常广泛的一种组件,它以垂直列表的形式显示所有列表项。创建ListView的两种方式直接使用ListView进行创建让Activity继承ListActivity一旦在程序中获得了ListView之后,接下来就需要为ListView设置它要显示的列表项了。在这一点上,ListView与前面介绍的AutoComplete.Spinner类似,它们都需要一原创 2013-12-30 20:51:37 · 808 阅读 · 0 评论 -
ListView实例-直接通过XML文件进行…
原创 2013-12-30 20:51:44 · 860 阅读 · 0 评论 -
Android开发之Button组件的使用
找到我们res下边的layout文件夹下边xml文件<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="fill_parent" and原创 2013-12-30 20:36:12 · 521 阅读 · 0 评论 -
Android开发之单选组件的使用
找到我们res下边layout里边的xml文件<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" andr原创 2013-12-30 20:36:24 · 462 阅读 · 0 评论 -
通过资源文件配置Android下拉列表…
1、首先找到我们res文件夹下边的layout下边的xml文件<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"原创 2013-12-30 20:36:41 · 478 阅读 · 0 评论 -
安卓ArrayAdapter类读取资源文件配…
1、找到我们的res下layout的xml文件<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" andro原创 2013-12-30 20:36:44 · 1259 阅读 · 0 评论 -
Android开发之TableLayout布局的使…
原始效果<TableLayoutxmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="ma原创 2013-12-30 20:37:20 · 486 阅读 · 0 评论