大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
网站建设哪家好,找创新互联!专注于网页设计、网站建设、微信开发、微信小程序定制开发、集团企业网站建设等服务项目。为回馈新老客户创新互联还提供了特克斯免费建站欢迎大家使用!
字符串资源
自动生成目录 :Values,生成了三个
App_name: AndroidManifest.xml使用了
hello_world:activity_main.xml
代码读取:
Stringstr=getResources().getString(R.string.app_name);
// System.out.println(str);
tv=(TextView)findViewById(R.id.tv)
tv.setText(R.string.app_name);
2、颜色资源
android:background="#FF0000",可简化"#F00"
不透明:"#FF00",半透明:"#8F00"
可添加资源:Android xml File类型:value
调用自己定义:
android:background="@Color/red"
调用操作系统:
android:background="@Android:Color/black"
3、数组资源
创建Value类型的xml文件:
调用:
String[] arr=getResources().getStringArray(R.array.arr);
for(String string : arr)
System.out.println(string);
4 Drawable资源
AndroidManifest.xml中:android:icon="@drawable/ic_launcher"
不分分辩率,创建drawable目录:
拷进png文件:20150103122610.png
图片按钮,如:
android:id="@+id/p_w_picpathView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/20150103122610" /> 其它按钮背景: android:background="@drawable/20150103122610" 5 菜单资源 在menu下默认生成了菜单项:
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
tools:context="com.example.resource6.MainActivity">
android:id="@+id/action_settings" android:orderInCategory="100" android:title="@string/action_settings" app:showAsAction="never"/> 可重写菜单项,菜单的点击事件如下: @verride publicboolean onOptionsItemSelected(MenuItemitem) { switch(item.getItemId()){ case R.id.action_settings: new AlertDialog.Builder(this).setTitile("标题").setMessage("对话框").setPositiveButton("关闭",null).show(); break; case R.id.action_bar Toast.makeText(this,"消息", Toast_LENTH_SHORT).show(); break; default: break; } }
网页题目:10天学通Android开发(6)-资源访问
网站地址:http://dzwzjz.com/article/pgggic.html