Android 中的建造者模式 Android开发教程

Android 中的建造者模式

建造者模式(Builder Pattern)也叫生成器模式,其定义如下: separate the construction of a complex object from its representation so that the same construction process can create different representations.将一个复杂对...

阅读全文
ContextMenu高级用法 Android开发教程

ContextMenu高级用法

我们经常在列表的页面中,点击列表中的行,一般进入详情页面,长按列表中一行,会弹出一个菜单,包含了对某一行的操作(编辑、删除等等),也知道通常的用法: 0x01. 在Activity中...

阅读全文
实现ListView删除某行功能 Android开发教程

实现ListView删除某行功能

实现ListView删除某行功能,主界面简单的一个ListView视图 RelativeLayout xmlns:android=http://schemas.android.com/apk/res/android xmlns:tools=http://schemas.android.com/tools android:layout_width=match_parent android:layout_...

阅读全文
android基础之drawable Android开发教程

android基础之drawable

一、加载bitmap 和 drawable 从asserts文件夹创建bitmap,并赋给imageview AssetManager manager = getAssets(); // read a Bitmap from Assets InputStream open = null; try { open = manager.open(logo.png); Bitmap bitmap = BitmapFactory....

阅读全文