8.28

1.layout_gravity=start 时,从左向右 end时 从右向左
2.Inflater
在实际开发中LayoutInflater这个类还是非常有用的,它的作用类似于findViewById()。具体作用: 1、对于一个没有被载入或者想要动态载入的界面,都需要使用LayoutInflater.inflate()来载入;
2、对于一个已经载入的界面,就可以使用Activiyt.findViewById()方法来获得其中的界面元素。
inflate 方法 通过 sdk 的 api 文档,可以知道该方法有以下几种过载形式,返回值均是 View 对象
/**
* LayoutInflater这个类的作用类似于findViewById(),
* 不同点:
* LayoutInflater是用来找layout下xml布局文件的,而且它会实例化
* findViewById()是找具体xml布局文件下的具体widget控件,比如:Button按钮
*
*
*
* inflate就相当于将一个xml中定义的布局找出来.   
* 因为如果在一个Activity文件里直接用findViewById()这个方法的话,
* 那么它所对应的是setConentView()中调用的那个layout里的组件.   
* 因此如果在同样的Activity里用到别的layout的话,
* 而且你还要设置这个layout里的组件(比如:ImageView,TextView)上的内容,
* 那么你就必须用inflate()先将这个layout找出来, 然后再用这个layout对象去找到它上面的组件
* 然后进行一系列的操作
*
* inflate()方法中参数:
* 1.想要用的布局文件的id
* 2.持有选项卡的内容,获取FrameLayout
* 3.true:将此处解析的xml文件做为根视图View
*/
Inflate 方法
通过 sdk 的 api 文档,可以知道该方法有以下几种过载形式,返回值均是 View 对象,如下:
public View inflate (int resource, ViewGroup root)
public View inflate (XmlPullParser parser, ViewGroup root)
public View inflate (XmlPullParser parser, ViewGroup root, boolean attachToRoot)
public View inflate (int resource, ViewGroup root, boolean attachToRoot)

Java代码
public static LayoutInflater from(Context context) {      
  LayoutInflater LayoutInflater =      
          (LayoutInflater) 
  context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);      
  if (LayoutInflater == null) {      
      throw new AssertionError("LayoutInflater not found.");      
  }      
  return LayoutInflater;      
  }        
public static LayoutInflater from(Context context) {   
LayoutInflater LayoutInflater =(LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);   
if (LayoutInflater == null) {   
    throw new AssertionError("LayoutInflater not found.");   
}   
    return LayoutInflater;   
} 

另外getSystemService()是Android很重要的一个API,它是Activity的一个方法,根据传入的NAME来取得对应的Object,然后转换成相应的服务对象。以下介绍系统相应的服务。

  传入的Name 返回的对象 说明
  WINDOW_SERVICE WindowManager 管理打开的窗口程序
  LAYOUT_INFLATER_SERVICE LayoutInflater 取得xml里定义的view
  ACTIVITY_SERVICE ActivityManager 管理应用程序的系统状态
  POWER_SERVICEPowerManger 电源的服务
  ALARM_SERVICE AlarmManager 闹钟的服务
  NOTIFICATION_SERVICE NotificationManager 状态栏的服务
  KEYGUARD_SERVICE KeyguardManager 键盘锁的服务
  LOCATION_SERVICE LocationManager 位置的服务,如GPS
  SEARCH_SERVICE SearchManager 搜索的服务
  VEBRATOR_SERVICE Vebrator 手机震动的服务
  CONNECTIVITY_SERVICE Connectivity 网络连接的服务
  WIFI_SERVICE WifiManager Wi-Fi服务
  TELEPHONY_SERVICE TeleponyManager 电话服务

3.Bundle
两个activity之间的通讯可以通过bundle类来实现类
1:TestBundle类:

import android.app.Activity;    
import android.content.Intent;    
import android.os.Bundle;    
import android.view.View;  
import android.view.View.OnClickListener;  
import android.widget.Button;  
public class TestBundle extends Activity {    
private Button button1;  
private OnClickListener cl;   
public void onCreate(Bundle savedInstanceState) {    
    super.onCreate(savedInstanceState);    
    setContentView(R.layout.main);  
    button1 = (Button) findViewById(R.id.button1);  
    cl = new OnClickListener(){  
        @Override  
        public void onClick(View arg0) {  
            // TODO Auto-generated method stub  
            Intent intent = new Intent();    
            intent.setClass(TestBundle.this, Target.class);    
            Bundle mBundle = new Bundle();    
            mBundle.putString("Data", "data from TestBundle");//压入数据    
            intent.putExtras(mBundle);    
            startActivity(intent);  
        }  
    };  

类2: Target

import android.app.Activity;    
import android.os.Bundle;      
public class Target extends Activity{    
public void onCreate(Bundle savedInstanceState) {    
     super.onCreate(savedInstanceState);    
     setContentView(R.layout.target);    
     Bundle bundle = getIntent().getExtras();   //得到传过来的bundle  
     String data = bundle.getString("Data");//读出数据    
     setTitle(data);    
   }    
}    

4.Fragment
首先Fragment 就可以把它当作一个view , 只不过这个view 与 activity一样有了生命周期函数。在Activity中你可以通过getFragmentManager()来获得Fragment对象,然后通过FragmentManager对象的beginFragmentTransaction()方法来获得FragmentTransaction对象。通过它的add()方法来添加一个Fragment到当前的Activity中。
一个FragmentTransaction对象可以执行多个增删修的方法,如果你想把这些修改提交到Activity上,必须在最后调用一下这个对象的commit()方法。
例子:http://www.2cto.com/kf/201407/318931.html

你可能感兴趣的:(8.28)