android:tag与android:id的区别

(1)tag的优势:只要不在同一个父控件中,tag可以有相同的名字。view.findViewWithTag(id)

(2)id的优势:查找速度不tag快。view.findViewById(id).

findViewById()函数其实有两种,一种是Activity类中findViewById()函数,另外一种是View类中定义的findViewById()函数.

一般我们在oncreate()方法中使用的(**view)findViewById(R.id.**)既是调用的Activity中的findViewById()函数,个函数是在寻找在xml中定义的指定id的对象.而在其他情况写出的***view.findViewById()中调用的是view类中的findViewById(),从一个view的child view中寻找指定id的对象,所以即使几个layout的XML文件中的View的id号相同的话,只要他们没有相同的父节点,或有相同的父亲节点,但不在父节点及以上节点调用findViewById通过id来查找他们就是没有问题。

既然Activity中的findViewById()是从R.java中寻找东西,那么我们就要杜绝相同名字的控件,在调用view中的findViewById()一定要想好父View是谁!即**view.findViewById()中的**view要找对,如果没有找对父View,返回基本都是null了。

在网上看见View.findViewById() 和 Activity.findViewById()执行效率不一样

通常我们使用Activity.findViewById()如:

Java代码   收藏代码
  1. TextView tv_inner_1 = (TextView)this.findViewById(R.id.tv_inner_1);   
  2. TextView tv_inner_2 = (TextView)this.findViewById(R.id.tv_inner_2);  

 View.findViewById() 如:

Java代码   收藏代码
  1. View layout_outer = this.findViewById(R.id.layout_outer);   
  2. TextView tv_inner_1 = (TextView)layout_outer.findViewById(R.id.tv_inner_1);   
  3. TextView tv_inner_2 = (TextView)layout_outer.findViewById(R.id.tv_inner_2);  

 

他们都是针对下面同一个xml

Java代码   收藏代码
  1. <LinearLayout>   
  2.      <LinearLayout id="@+id/layout_outer">   
  3.            <TextView id="@+id/tv_inner_1"/>   
  4.            <TextView id="@+id/tv_inner_2"/>   
  5.      </LinearLayout>   
  6. </LinearLayout> 


Tag的使用 package com.yarin.android.qiehuan; import android.app.AlertDialog; import android.app.Dialog; import android.app.TabActivity; import android.content.DialogInterface; import android.graphics.Color; import android.os.Bundle; import android.widget.TabHost; import android.widget.TabHost.OnTabChangeListener; public class Activity01 extends TabActivity { //声明TabHost对象 TabHost mTabHost; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); //取得TabHost对象 mTabHost = getTabHost(); /* 为TabHost添加标签 */ //新建一个newTabSpec(newTabSpec) //设置其标签和图标(setIndicator) //设置内容(setContent) mTabHost.addTab(mTabHost.newTabSpec("test1") .setIndicator("TAB 1",getResources().getDrawable(R.drawable.img1)) .setContent(R.id.textview1)); mTabHost.addTab(mTabHost.newTabSpec("test2") .setIndicator("TAB 2",getResources().getDrawable(R.drawable.img2)) .setContent(R.id.textview2)); mTabHost.addTab(mTabHost.newTabSpec("test3") .setIndicator("TAB 3",getResources().getDrawable(R.drawable.img3)) .setContent(R.id.textview3)); //设置TabHost的背景颜色 mTabHost.setBackgroundColor(Color.argb(150, 22, 70, 150)); //设置TabHost的背景图片资源 //mTabHost.setBackgroundResource(R.drawable.bg0); //设置当前显示哪一个标签 mTabHost.setCurrentTab(0); //标签切换事件处理,setOnTabChangedListener mTabHost.setOnTabChangedListener(new OnTabChangeListener() { // TODO Auto-generated method stub @Override public void onTabChanged(String tabId) { Dialog dialog = new AlertDialog.Builder(Activity01.this) .setTitle("善谢谢提醒") .setMessage("现在选中了:"+tabId+"标签") .setPositiveButton("确定", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int whichButton) { dialog.cancel(); } }).create();//创建按钮 dialog.show(); } }); } }
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值