android+notepad教程,Android Sample学习——NotePad

android.view.Menu专场

Interface for managing the items in a menu.

By default, every Activity supports an options menu of actions or options. You can add items to this menu and handle clicks on your additions. The easiest way of adding menu items is inflating an XML file into the

Different menu types support different features:

Context menus: Do not support item shortcuts and item icons.

Options menus: The icon menus do not support item check marks and only show the item's expanded menus (only available if six or more menu items are visible, reached via the 'More' item in the icon menu) do not show item icons, and item check marks are discouraged.

Sub menus: Do not support item icons, or nested sub menus.

public abstract MenuItemadd (int groupId, int itemId, int order, int titleRes)

Variation on

Parameters

groupId

The group identifier that this item should be part of. This can also be used to define groups of items for batch state changes. Normally use

itemId

Unique item ID. Use

order

The order for the item. Use

titleRes

Resource identifier of title string.

Returns

The newly added menu item.

public abstract MenuItemsetShortcut (char numericChar, char alphaChar)

Change both the numeric and alphabetic shortcut associated with this item. Note that the shortcut will be triggered when the key that generates the given character is pressed alone or along with with the alt key. Also note that case is not significant and that alphabetic shortcut characters will be displayed in lower case.

See

Parameters

numericChar

The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key) keyboard.

alphaChar

The alphabetic shortcut key. This is the shortcut when using a keyboard with alphabetic keys.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

android.graphics.Rect

Rect holds four integer coordinates for a rectangle. The rectangle is represented by the coordinates of its 4 edges (left, top, right bottom). These fields can be accessed directly. Use width() and height() to retrieve the rectangle's width and height. Note: most methods do not check to see that the coordinates are sorted correctly (i.e. left <= right and top <= bottom).

android.graphics.Paint

The Paint class holds the style and color information about how to draw geometries, text and bitmaps.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

android.content.Intent专题:

Uri android.content.Intent.getData()

public UrigetData ()

Retrieve data this intent is operating on. This URI specifies the name of the data; often it uses the content: scheme, specifying data in a content provider. Other schemes may be handled by specific activities, such as http: by the web browser.

Returns

The URI of the data this intent is targeting or null.

public IntentsetData (Uri data)

Set the data this intent is operating on. This method automatically clears any type that was previously set by

Note: scheme and host name matching in the Android framework is case-sensitive, unlike the formal RFC. As a result, you should always ensure that you write your Uri with these elements using lower case letters, and normalize any Uris you receive from outside of Android to ensure the scheme and host is lower case.

Parameters

data

The URI of the data this intent is now targeting.

Returns

Returns the same Intent object, for chaining multiple calls into a single statement.

public static final StringACTION_INSERT

Activity Action: Insert an empty item into the given container.

Input:

Output: URI of the new data that was created.

Constant Value:"android.intent.action.INSERT"

public IntentsetAction (String action)

Set the general action to be performed.

Parameters

action

An action name, such as ACTION_VIEW. Application-specific actions should be prefixed with the vendor's package name.

Returns

Returns the same Intent object, for chaining multiple calls into a single statement.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~·

android.app.Activity专场:

void android.app.Activity.finish()

public voidfinish ()

Call this when your activity is done and should be closed. The ActivityResult is propagated back to whoever launched you via onActivityResult().

public final voidsetResult (int resultCode, Intent data)

Call this to set the result that your activity will return to its caller.

Parameters

resultCode

The result code to propagate back to the originating activity, often RESULT_CANCELED or RESULT_OK

data

The data to propagate back to the originating activity.

public voidsetContentView (int layoutResID)

Set the activity content from a layout resource. The resource will be inflated, adding all top-level views to the activity.

Parameters

layoutResID

Resource ID to be inflated.

public final CursormanagedQuery (Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder)

Wrapper around

Parameters

uri

The URI of the content provider to query.

projection

List of columns to return.

selection

SQL WHERE clause.

selectionArgs

The arguments to selection, if any ?s are pesent

sortOrder

SQL ORDER BY clause.

Returns

The Cursor that was returned by query().

public voidsetTitle

Change the title associated with this activity. If this is a top-level activity, the title for its window will change. If it is an embedded activity, the parent can do whatever it wants with it.

public booleanonOptionsItemSelected

This hook is called whenever an item in your options menu is selected. The default implementation simply returns false to have the normal processing happen (calling the item's Runnable or sending a message to its Handler as appropriate). You can use this method for any items for which you would like to do processing without those other facilities.

Derived classes should call through to the base class for it to perform the default menu handling.

Parameters

item

The menu item that was selected.

Returns

boolean Return false to allow normal menu processing to proceed, true to consume it here.

public IntentgetIntent ()

Return the intent that started this activity.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~·

android.widget.TextView专场:

public final voidsetTextKeepState

Like

Parameters

text

The new text to place in the text view.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

android.database.Cursor专场:

String android.database.Cursor.getString(int columnIndex)

public abstract StringgetString (int columnIndex)

Returns the value of the requested column as a String.

If the native content of that column is not text the result will be the result of passing the column value to String.valueOf(x).

Parameters

columnIndex

the zero-based index of the target column.

Returns

the value of that column as a String.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

android.content.ContentValues专题:

void android.content.ContentValues.put(String key, String value)

public voidput

Adds a value to the set.

Parameters

key

the name of the value to put

value

the data for the value to put

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/278873.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Windows应用程序开发

Windows窗体应用程序开发&#xff1a;WinForm、桌面应用程序&#xff0c;有可执行文件(.exe)即安装包。是一种C/S&#xff08;客户机/服务器&#xff09;架构应用程序 1.Windows窗体应用程序&#xff0c;用可视化的窗体和控件生成丰富界面的&#xff0c;可交互操作的应用程序。…

获取outlook 会议_如何仅在Microsoft Outlook中仅获取您关注的电子邮件的通知

获取outlook 会议Some emails are more important than others. Rather than getting alerts every time an email arrives, configure Microsoft Outlook to only alert you when the important stuff hits your inbox, rather than any old email that can wait until you ch…

jq html 多一个引号,为什么jQuery模板会为某些字符串添加双引号

背景我正在使用jQuery模板,ASP.Net MVC Razor视图和Twitter.问题使用带有一些字符串的jQuery模板会自动导致这些字符串被包含在“细节我创建了一个如下所示的jQuery模板&#xff1a;before ${text.parseUserName().parseHashTag()} after${created_at}${prettyDate(created_at)…

从Windows计算机上完全删除iTunes和其他Apple软件

If you are giving up on iTunes for another music player, uninstalling it completely can be a hassle. Here we show you how to completely remove all traces of it including QuickTime, iTunes Helper, Bonjour…all of it. 如果您在iTunes上放弃了其他音乐播放器&…

html仿微信滑动删除,使用Vue实现移动端左滑删除效果附源码

左滑删除在移动端是很常见的一种操作&#xff0c;常见于删除购物车中的商品&#xff0c;删除收藏夹中文章等等场景。我们只需要手指按住要删除的对象&#xff0c;然后轻轻向左滑动&#xff0c;便会出现删除按钮&#xff0c;然后点击删除按钮即可删除对象。点击下载源码今天我给…

推荐书本_

1. c#_设计模式 《设计模式&#xff1a;可复用面向对象软件的基础》GoF 《面向对象分析与设计》Grady Booch 《敏捷软件开发&#xff1a;原则、模式与实践》 Robert C.Martin 《重构&#xff1a;改善既有代码的设计》 Martin Fowler 《Refactoring to Patterns》Jshua Kerievsk…

h5 领取优惠券 下载_下载7天免费试用版或购买VideoProc,可享受60%优惠券[赞助的帖子]...

h5 领取优惠券 下载You may have seen piles of video editing tools, but here we’ll show you a different one – VideoProc, developed by Digiarty Software, Inc. It is not a “standard” video editing program. Some consider VideoProc a complete toolbox also fo…

html走马观花效果,走马观花台湾行 用EF-S 10-18来记录风景

我在6月初入手无忌第一支10-18&#xff0c;初步测试后对其表现比较满意&#xff0c;具体可看http://forum.xitek.com/thread-1314865-1-1-1.html。7月初到8月中旬我都处于旅行状态中&#xff0c;佳能系统带了三支镜&#xff0c;包括EFS10-18&#xff0c;EFS55-250和EF24IS&…

一大波学习内容!

Dubbo-大波-服务化框架 dubbo_百度搜索Dubbo与Zookeeper、SpringMVC整合和使用&#xff08;负载均衡、容错&#xff09; - 好库文摘User Guide-zh - Dubbo - Alibaba Open SesameUser Guide-zh - Dubbo - Alibaba Open Sesame简单之美 | Dubbo架构设计详解DUBBOHprose RPC框架 …

文件下载至storage_如何防止Storage Sense在Windows 10上删除下载的文件

文件下载至storageStorage Sense is the Disk Cleanup replacement for the modern world. It frees up space on your computer by deleting things like recycle bin contents, temporary internet files, and app temporary files. This also includes the Downloads folder…

html标签属性和标签事件,HTML参考手册( 标签、属性和事件)

HTML标签标签 描述 DTD定义注释。 STF定义文档类型。 STF定义锚。 STF定义缩写。 STF定义只取首字母的缩写。 STF定义文档作者或拥有者的联系信息。 STF 不赞成使用。定义嵌入的 applet。 TF 定义图像映射内部的区域。 STF 定义粗体字。 STF 定义页面中所有链接的默认地址或默认…

Feign从配置文件中读取url

Feign的url和name都是可配置的&#xff0c;就是从配置文件中读取的属性值&#xff0c;然后用占位符引用就可以了&#xff1a; ${rpc.url} FeignClient(name "me",url "${rpc.url}", // 这里是可以配置的, 就不用再硬编码了fallbackFactory MyHystrixFa…

百度地图精确定位html,HTML5地理定位,百度地图API,知识点熟悉

深入seajs源码系列三入口方法 每个程序都有个入口方法,类似于c的main函数,seajs也不例外.系列一的demo在首页使用了seajs.use(),这便是入口方法.入口方法可以接受2个参数,第一个参数为模块名称,第二个 ...javscript创建Emitter本文简单叙述下javascript是如何建立一个Emitter构…

如何搭建html运行环境,搭建真实的运行环境2019.4.22

1、搭建真实运行环境步骤①先下载phpstudy软件②按照安装步骤进行phpstudy安装&#xff0c;安装后启动服务&#xff0c;点击《其它选项菜单》里面的《My HomePage》选项&#xff0c;正常显示&#xff0c;说明安装成功2、创建本地访问目录和域名①打开phpstudy&#xff0c;点击《…

supervisord的安装使用

由于生产环境使用的的tomcat&#xff0c;项目比较重要&#xff0c;所以要做进程守护&#xff0c;本来打算自己写脚本&#xff0c;但是效果不理想&#xff0c;想了下还是用supervisord了 由于很久不用&#xff0c;所以写下来部署步骤 第一&#xff1a;安装&#xff0c;安装的方法…

如何在Windows 10上使用Microsoft Defender扫描文件或文件夹中的恶意软件

On Windows 10, Microsoft Defender (formerly called “Windows Defender”) always scans files before you open them unless you’ve installed a third-party antivirus. You can also perform a quick scan of any file or folder, too. Here’s how. 在Windows 10上&…

html中怎么获取搜索框中的值,百度API 搜索框,获取相应的地点的uid

在百度API的输入框中怎么根据搜索到的地址获取百度的uidbody, html{width: 100%;height: 100%;margin:0;font-family:"微软雅黑";font-size:14px;}#l-map{height:300px;width:100%;}#r-result{width:100%;}关键字输入提示词条请输入:// 百度地图API功能function G(id…

adb 常用

adb抓日志命令&#xff1a;adb pull /data/log/android_logs 本地目录 构造大文件&#xff1a;adb shell dd if/dev/zero of/mnt/sdcard/bigfile adb shell pm list package 查看所有包 adb shell pm path packageName 查看包名路径 adb uninstall packageName 卸载应用 …

html 替代table,Iframe的缺点,div或者table成为替代者

1、在网页中使用框架结构最大的弊病是搜索引擎的“蜘蛛”程序无法解读这种页面。当“蜘蛛”程序遇到由数个框架组成的网页时&#xff0c;它们只看到框架而无法找到链接&#xff0c;因此它们会以为该网站是个死站点&#xff0c;并且很快转身离去。对一个网站来说这无异于一场灾难…

uac2.0驱动_关闭Vista中令人讨厌的HP驱动程序UAC弹出更新检查

uac2.0驱动If you are using Vista and have an HP printer, especially of the All-In-One variety, you’ve probably noticed that once a week or so you get this obnoxious User Account Control popup dialog out of the blue asking for permission to run some Hewlet…