Android杂谈--LayoutInflater和MenuInflater用法

标签: android layoutinflater menuinflater | 发表时间:2011-12-28 22:48 | 作者:娄立军
出处:http://www.cnblogs.com/

      前言      

LayoutInflater用法

LayoutInflater是一个用来实例化XML布局为View对象

应用程序运行时会预先加载资源中的布局文件,如果layout布局中的资源比较多,会影响性能,所以可以选择LayoutInflater方式用的时候加载,这样减轻了应用程序运行时很多负担

public  View inflate (int resource,  ViewGroup root)

从指定的XML资源中填充一个新的视图

参数resource:将要加载的XML布局id,例如R.layout.list_item

参数root:父视图,可选项,一般为Null

public static  LayoutInflater from ( Context context)

从给定的context获取LayoutInflater


可以通过如下三种方式获取LayoutInflater

第一种:

LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);    
View myView = inflater.inflate(R.layout.main, null);

第二种:与第一种方法相同,即from方法封装了getSystemService(...)等

LayoutInflater inflater = LayoutInflater.from(context);    
View myView = inflater.inflate(R.layout.main, null);

第三种:getLayoutInflater()方法是Activity的方法,归根到底还是第一种方式

LayoutInflater inflater = getLayoutInflater();    
View myView = inflater.inflate(R.layout.main, null);

所以我们在加载布局的时候可以用setContentView直接设置,然后通过findViewById()来获取控件的id


例如:我们可以用4种方式加载main.xml布局文件,不过LayoutInflater一般多用于ListView等地方,

如BaseAdapter的getView()方法会用到: http://www.cnblogs.com/loulijun/archive/2011/12/28/2305016.html

package com.loulijun.demo6;    

import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

public class Demo6Activity extends Activity {
private Button btn;
private TextView tv;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//----------第一种方式----------
// setContentView(R.layout.main);
// btn = (Button)findViewById(R.id.btn);
// tv = (TextView)findViewById(R.id.tv);
//----------第二种方式----------
// LayoutInflater inflater = getLayoutInflater();
//----------第三种方式----------
// LayoutInflater inflater = LayoutInflater.from(this);
//----------第四种方式----------
LayoutInflater inflater = (LayoutInflater)this.getSystemService(
Context.LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(R.layout.main, null);
setContentView(view);
btn = (Button)view.findViewById(R.id.btn);
tv = (TextView)view.findViewById(R.id.tv);
btn.setOnClickListener(new Button.OnClickListener()
{

@Override
public void onClick(View v) {
//...
}

});
}


使用setContentView(R.layout.main)设置布局后布局会立刻显示,而使用inflate()方法加载的布局文件得到的是一个View视图对象,在需要的时候再setContentView(view)即可。在Activity中一般只需要setContentView即可,如果是非Acitivity,则需要使用LayoutInflater来动态加载控制控件

MenuInflater用法

MenuInflater是用来加载menu布局文件的,与上面的类似

与LayoutInflater类似,应用程序运行时会预先加载资源中的布局文件,如果Menu布局中的资源比较多,会影响性能,所以可以选择MenuInflater方式用的时候加载,这样减轻了应用程序运行时很多负担

与LayoutInflater相比,MenuInflater用法要简单很多,它只有Activity.getMenuInflater()方法。

例如:

1、在res目录下创建menu文件夹,在里面创建mymenu.xml

<?xml version="1.0" encoding="utf-8"?>    
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:title="打电话"
android:icon="@android:drawable/ic_menu_call"
android:id="@+id/action_call"/>
  <item
android:title="照相"
android:icon="@android:drawable/ic_menu_camera"
android:id="@+id/action_camera"/>
  <item
android:title="添加"
android:icon="@android:drawable/ic_menu_add"
android:id="@+id/action_add"/>
  <item
android:title="删除"
android:icon="@android:drawable/ic_menu_delete"
android:id="@+id/action_delete"/>
</menu>

2、重写onCreateOptionsMenu方法和onOptionsItemSelected方法之后,在onCreateOptionsMenu中使用MenuInflater加载布局

package com.loulijun.demo6;    

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

public class Demo6Activity extends Activity {
private Button btn;
private TextView tv;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
//填充菜单
inflater.inflate(R.menu.mymenu, menu);
return super.onCreateOptionsMenu(menu);
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch(item.getItemId())
{
case R.id.action_add:
//操作
break;
case R.id.action_call:
break;
case R.id.action_camera:
break;
case R.id.action_delete:
break;
}
return super.onOptionsItemSelected(item);
}

}

运行结果:




本文链接

相关 [android layoutinflater menuinflater] 推荐:

Android杂谈--LayoutInflater和MenuInflater用法

- - 博客园_首页
      前言      . LayoutInflater用法. LayoutInflater是一个用来实例化XML布局为View对象. 应用程序运行时会预先加载资源中的布局文件,如果layout布局中的资源比较多,会影响性能,所以可以选择LayoutInflater方式用的时候加载,这样减轻了应用程序运行时很多负担.

Android成长之路-LayoutInflater和inflate的用法

- - CSDN博客推荐文章
在这里用Tabhost的例子来说明:. * LayoutInflater这个类的作用类似于findViewById(),. LayoutInflater是用来找layout下xml布局文件的,而且它会实例化. findViewById()是找具体xml布局文件下的具体widget控件,比如:Button按钮.

Android 遥控车

- CasparZ - LinuxTOY
您确定您真的会用 Android 手机玩赛车. 16 岁的法国学生 Jonathan Rico 使用 Android 手机通过蓝牙实现了对改装玩具汽车的遥控. 操控的方式和那些标榜的智能手机游戏一样,使用重力感应,差别是这次控制的是现实世界中的遥控汽车. 收藏到 del.icio.us |.

Android免费?毛

- Ruby - FeedzShare
来自: 36氪 - FeedzShare  . 发布时间:2011年08月17日,  已有 2 人推荐. 微软CEO Steve Ballmer在预测竞争对手产品时通常口无遮拦. 比如他去年抨击Google的Android战略时,很多人都不屑一顾. 接着Android蚕食了微软的地盘,后来又开始侵犯苹果的地盘.

GetEd2k (Android应用)

- 某牢 - eMule Fans 电骡爱好者
GetEd2k是一个Android应用程序,作者是anacletus. 此应用可以帮助你把网页中的电驴(eDonkey) 链接添加到你个人电脑的电驴客户端里,不过前提是你的客户端开启了用于远程控制的Web interface(Web服务器,网页接口,Web界面),当然,eMule(电骡), MLDonkey 和 aMule 都支持该功能,所以这三种主流电驴客户端的用户都可以使用GetEd2k.

Android 4.0发布

- coofucoo - Solidot
Shawn the R0ck 写道 "2011年10月19日早上10点,谷歌与三星联手在香港发布了Android 4.0和Galaxy Nexus. " Android 4.0 的主要特性包括:更精细的UI,加强多任务和通知功能,锁屏下可打开摄像头和浏览通知,改进文本输入和拼写检查;增强视频录制和图像编辑功能,支持剪裁和旋转图片、消除红眼、添加效果等;面部识别解锁;Android Beam允许两台支持NFC的设备之间交换应用程序、联系人、音乐和视频;Wi-Fi Direct,蓝牙HDP,等等.

NoScript For Android发布

- John - Solidot
用于屏蔽脚本的浏览器流行扩展NoScript发布了Android版本. 开发者称已经在Firefox for Android测试过,此外也应该能工作在基于Maemo的设备上. 移动版NoScript可以帮助移动用户抵抗基于脚本的攻击. Android平台上的扩展功能和桌面版相似,允许用户对每个网站单独设置脚本执行许可.

Android入门:ContentProvider

- - ITeye博客
一、ContentProvider介绍. ContentProvider翻译为“内容提供者”;. 定义:指该应用包含一些方法,供外界访问,其他应用程序可以调用该方法,比如如果应用A创建了一个数据库“test.db”,默认是私有的,即其他应用程序不能对其进行操作,但是如果应用A使用了ContentProvider,则其他应用程序可以访问该数据库;.

Android Service 详解

- - CSDN博客移动开发推荐文章
一个Service也是一种应用程序组件,它运行在后台以提供某种服务,通常不具有可见的用户界面. 其它的应用程序组件可以启动一个Service,即使在用户切换到另外一个应用程序后,这个Service还是一直会在后台运行. 此外,一个应用程序也可以绑定到一个Service然后使用进程间通信(IPC)方式与Service之间发生交互.