当前位置:  编程技术>移动开发
本页文章导读:
    ▪【通译】(32)资源类型        【翻译】(32)资源类型   【翻译】(32)资源类型   see http://developer.android.com/guide/topics/resources/available-resources.html   原文见 http://developer.android.com/guide/topics/resources/available-resources.html   -------------.........
    ▪ Redis学习文件        Redis学习资料 Redis资料汇总1.redis 环境搭建http://www.cnblogs.com/redcreen/articles/1955523.html2.redis 数据类型http://www.cnblogs.com/redcreen/archive/2011/02/15/1955405.html3.redis 排序http://www.cnblogs.com/redcreen/archive/2011/0.........
    ▪ Menu例证       Menu例子 如调用函数menu.add(0,ADD_ID,1, R.string.menu_add);第一个参数表示菜单项的一个分组号,第二个表示该菜单项的ID,第三个参数的意义是顺序,编号越小越排在前面最后一个表示应用的字.........

[1]【通译】(32)资源类型
    来源: 互联网  发布时间: 2014-02-18
【翻译】(32)资源类型

 

【翻译】(32)资源类型

 

see

http://developer.android.com/guide/topics/resources/available-resources.html

 

原文见

http://developer.android.com/guide/topics/resources/available-resources.html

 

-------------------------------

 

Resource Types

 

资源类型

 

-------------------------------

 

See also

 

另见

 

Providing Resources 提供资源

Accessing Resources 访问资源

 

-------------------------------

 

Each of the documents in this section describe the usage, format and syntax for a certain type of application resource that you can provide in your resources directory (res/).

 

本章节的每个文档描述你可以在你的资源目录(res/)中可以提供的某个类型应用程序资源的用法、格式和语法。

 

Here's a brief summary of each resource type:

 

这里是每个资源类型的简短概述:

 

* Animation Resources

 

* 动画资源

 

Define pre-determined animations.

 

定义预设动画。

 

Tween animations are saved in res/anim/ and accessed from the R.anim class.

 

补间动画被保存在res/anim/中并且从R.anim类中访问。

 

Frame animations are saved in res/drawable/ and accessed from the R.drawable class.

 

帧动画被保存在res/drawable/中并且从R.drawable类中访问。

 

* Color State List Resource

 

* 颜色状态列表资源

 

Define a color resources that changes based on the View state.

 

定义一个颜色资源,它基于View的状态而改变。

 

Saved in res/color/ and accessed from the R.color class.

 

保存在res/color/中并且从R.color类中访问。

 

* Drawable Resources

 

* 可绘画对象资源

 

Define various graphics with bitmaps or XML.

 

用位图或XML定义不同的图形。

 

Saved in res/drawable/ and accessed from the R.drawable class.

 

保存在res/drawable中并且从R.drawable类中访问。

 

* Layout Resource

 

* 布局资源

 

Define the layout for your application UI.

 

为你的应用程序的用户界面定义布局。

 

Saved in res/layout/ and accessed from the R.layout class.

 

保存在res/layout/中并且从R.layout类中访问。

 

* Menu Resource

 

* 菜单资源

 

Define the contents of your application menus.

 

定义你的应用程序菜单的内容。

 

Saved in res/menu/ and accessed from the R.menu class.

 

保存在res/menu/中并且从R.menu类中访问。

 

* String Resources

 

* 字符串资源

 

Define strings, string arrays, and plurals (and include string formatting and styling).

 

定义字符串,字符串数组,以及复数(还包括字符串的格式和样式)。

 

Saved in res/values/ and accessed from the R.string, R.array, and R.plurals classes.

 

保存在res/values/中并且从R.string,R.array,以及R.plurals类中访问。

 

* Style Resource

 

* 样式资源

 

Define the look and format for UI elements.

 

定义用户界面元素的外观和格式。

 

Saved in res/values/ and accessed from the R.style class.

 

保存在res/values/中并且从R.style类中访问。

 

* More Resource Types

 

* 更多资源类型

 

Define values such as booleans, integers, dimensions, colors, and other arrays.

 

定义值诸如布尔型,整型,尺寸,颜色,以及其它数组。

 

Saved in res/values/ but each accessed from unique R sub-classes (such as R.bool, R.integer, R.dimen, etc.).

 

保存在res/values/中但每个类型从唯一的R子类(注:内嵌类)中访问(诸如R.bool,R.integer,R.dimen,等等。)。

 

Except as noted, this content is licensed under Apache 2.0. For details and restrictions, see the Content License.

 

除特别说明外,本文在Apache 2.0下许可。细节和限制请参考内容许可证。

 

Android 4.0 r1 - 04 Jan 2012 0:53

 

-------------------------------

 

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

 

(此页部分内容基于Android开源项目,以及使用根据创作公共2.5来源许可证描述的条款进行修改)

 

(本人翻译质量欠佳,请以官方最新内容为准,或者参考其它翻译版本:

* ソフトウェア技術ドキュメントを勝手に翻訳

http://www.techdoctranslator.com/android

* Ley's Blog

http://leybreeze.com/blog/

* 农民伯伯

http://www.cnblogs.com/over140/

* Android中文翻译组

http://androidbox.sinaapp.com/

 


    
[2] Redis学习文件
    来源: 互联网  发布时间: 2014-02-18
Redis学习资料
Redis资料汇总
1.redis 环境搭建
http://www.cnblogs.com/redcreen/articles/1955523.html

2.redis 数据类型
http://www.cnblogs.com/redcreen/archive/2011/02/15/1955405.html

3.redis 排序
http://www.cnblogs.com/redcreen/archive/2011/02/15/1955226.html

4.redis 事务
http://www.cnblogs.com/redcreen/articles/1955516.html

5.redis pipeline
http://www.cnblogs.com/redcreen/archive/2011/02/15/1955517.html

6.redis 发布订阅
http://www.cnblogs.com/redcreen/archive/2011/02/15/1955521.html

7.redis 持久化
http://www.cnblogs.com/redcreen/archive/2011/02/15/1955520.html

8.redis 主从复制
http://www.cnblogs.com/redcreen/archive/2011/02/15/1955518.html

9.redis学习笔记之虚拟内存
http://www.cnblogs.com/redcreen/archive/2011/02/15/1955522.html

10.redis java client
http://www.cnblogs.com/redcreen/archive/2011/02/16/1955844.html



深入Redis内部-Redis 源码讲解
http://blog.nosqlfan.com/html/1413.html

Redis
http://blog.nosqlfan.com/tags/redis


Redis 源码分析:dict.c 和 dict.h
http://www.oschina.net/question/28_44909



    
[3] Menu例证
    来源: 互联网  发布时间: 2014-02-18
Menu例子
如调用函数menu.add(0,ADD_ID,1, R.string.menu_add);
第一个参数表示菜单项的一个分组号,
第二个表示该菜单项的ID,
第三个参数的意义是顺序,编号越小越排在前面
最后一个表示应用的字符串资源的id。

菜单被分为如下三种,
选项菜单(OptionsMenu),
上下文菜单(ContextMenu),
子菜单(SubMenu)。

参考:http://android.yaohuiji.com/archives/636



package com.mu;

import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.TextView;

public class MenuActivity extends Activity {
	private TextView textView1;
	private Menu myMenu;
	
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        
        textView1 = (TextView)findViewById(R.id.textView1);
    }
    
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
    	// TODO Auto-generated method stub
    	boolean result = super.onCreateOptionsMenu(menu);
    	int first = menu.FIRST;
    	menu.add(first, 1, 8, getString(R.string.group1));
    	menu.add(first, 2, 9,getString(R.string.group2));
    	menu.addSubMenu(1, 7, 1, "Sub Menu1");
    	menu.addSubMenu(1, 8, 2, "Sub Menu2");
    	
    	//int secondary=Menu.CATEGORY_SECONDARY;  
        menu.add(2, 3, 4, "sec. 2item 3");  
        menu.add(2, 4, 3, "sec. 2item 4");
    	
        menu.add(3, 5, 5, "sec. 3item 5");  
        menu.add(3, 6, 6, "sec. 3item 6");
        
        //menu.setGroupVisible(2, false);
        //menu.setGroupVisible(3, false);
        
        myMenu = menu;
    	return result;
    }
    
    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
    	// TODO Auto-generated method stub
    	boolean result = super.onOptionsItemSelected(item);
    	textView1.setText("Menu ID="+item.getItemId());
    	/*if(1==item.getItemId()){
    		myMenu.setGroupVisible(2, true);
    		myMenu.setGroupVisible(3, false);
    	}
    	if(2==item.getItemId()){
    		myMenu.setGroupVisible(2, false);
    		myMenu.setGroupVisible(3, true);
    	}*/
    	return result;
    }
    
    @Override
    public void onOptionsMenuClosed(Menu menu) {
    	// TODO Auto-generated method stub
    	super.onOptionsMenuClosed(menu);
    	//textView1.setText("onOptionsMenuClosed");
    }
}


    
最新技术文章:
▪Android开发之登录验证实例教程
▪Android开发之注册登录方法示例
▪Android获取手机SIM卡运营商信息的方法
▪Android实现将已发送的短信写入短信数据库的...
▪Android发送短信功能代码
▪Android根据电话号码获得联系人头像实例代码
▪Android中GPS定位的用法实例
▪Android实现退出时关闭所有Activity的方法
▪Android实现文件的分割和组装
▪Android录音应用实例教程
▪Android双击返回键退出程序的实现方法
▪Android实现侦听电池状态显示、电量及充电动...
▪Android获取当前已连接的wifi信号强度的方法
▪Android实现动态显示或隐藏密码输入框的内容
▪根据USER-AGENT判断手机类型并跳转到相应的app...
▪Android Touch事件分发过程详解
▪Android中实现为TextView添加多个可点击的文本
▪Android程序设计之AIDL实例详解
▪Android显式启动与隐式启动Activity的区别介绍
▪Android按钮单击事件的四种常用写法总结
▪Android消息处理机制Looper和Handler详解
▪Android实现Back功能代码片段总结
▪Android实用的代码片段 常用代码总结
▪Android实现弹出键盘的方法
▪Android中通过view方式获取当前Activity的屏幕截...
▪Android提高之自定义Menu(TabMenu)实现方法
▪Android提高之多方向抽屉实现方法
▪Android提高之MediaPlayer播放网络音频的实现方法...
▪Android提高之MediaPlayer播放网络视频的实现方法...
▪Android提高之手游转电视游戏的模拟操控
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3