手机版

android常用控件总结(2)

发布时间:2021-06-06   来源:未知    
字号:

android 常用控件总结

<intent-filter>/ //描述了Activity的启动时间和位置,另外为了支持查找Activity可以包含一个或多个<intent-filter>

<action android:name="android.intent.action.MAIN" /> //acton 为组件支持的Intent action

<category android:name="UNCHER"

/>//categor 为组件支持的Intent category 这里指定了引用程序的默认启动的Activity </intent-filter>

</activity>

<activity android:name = "Activity02"></activity> //在此对新增的Activity进行注册。如果在不同的包中注意声明是将包名带上

</application>

</manifest>

1.3 String.xml如下:

<?xml version="1.0" encoding="utf-8"?>

<resources> //此处定义了两个字符串资源,即定义了app_name,hello常量

<string name="hello">Hello World, SummaryActivity!</string>

<string name="app_name">Summary</string>

</resources>

如何使用这个资源呢?如下:

Resources r = this.getContext().getResources(); //通过Context的

getResource()实例化一个Resources对象

String app_name = ((String)r.getString(R.string.app_name)); //然后通过

getString()方法取得指定的索引的字符串。项目中所有常量都可以在String.xml文件中定义

String hello = ((String)r.getString(R.string.hello));

1.4 main.xml如下:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout

xmlns:android="/apk/res/android"//LinearLayout 线程版面配置

android常用控件总结(2).doc 将本文的Word文档下载到电脑,方便复制、编辑、收藏和打印
×
二维码
× 游客快捷下载通道(下载后可以自由复制和排版)
VIP包月下载
特价:29 元/月 原价:99元
低至 0.3 元/份 每月下载150
全站内容免费自由复制
VIP包月下载
特价:29 元/月 原价:99元
低至 0.3 元/份 每月下载150
全站内容免费自由复制
注:下载文档有可能出现无法下载或内容有问题,请联系客服协助您处理。
× 常见问题(客服时间:周一到周五 9:30-18:00)