LayoutParams继承于Android.View.ViewGroup.LayoutParams.
LayoutParams相当于一个Layout的信息包,它封装了Layout的位置、高、宽等信息。假设在屏幕上一块区域是由一个Layout占领的,如果将一个View添加到一个Layout中,最好告诉Layout用户期望的布局方式,也就是将一个认可的layoutParams传递进去。
可以这样去形容LayoutParams,在象棋的棋盘上,每个棋子都占据一个位置,也就是每个棋子都有一个位置的信息,如这个棋子在4行4列,这里的“4行4列”就是棋子的LayoutParams。
但LayoutParams类也只是简单的描述了宽高,宽和高都可以设置成三种值:
1,一个确定的值;
2,FILL_PARENT,即填满(和父容器一样大小);
3,WRAP_CONTENT,即包裹住组件就好。
在JAVA中动态构建的布局,常常这样写:
setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));
上面这一句话其实是子对父的,也就是说,父布局下的子控件要设置这句话。
因为布局很多,虽然都继承至ViewGroup但是各个布局还是有很大的不同。
很显然上面这句应该这样写才算准确:
setLayoutParams(new TableRow.LayoutParams(TableRow.LayoutParams.FILL_PARENT,TableRow.LayoutParams.FILL_PARENT));
这表示这个子控件的父布局是一个TableRow , 这样的LayoutParams 太多,所以应明确指明。
下面分别说下两个常用到布局:
1. FrameLayout下动态设置子控件居中,动态用JAVA代码要这样实现:
FrameLayout.LayoutParams lytp = new FrameLayout.LayoutParams(80,LayoutParams.WRAP_CONTENT);
lytp .gravity = Gravity.CENTER;
btn.setLayoutParams(lytp);
2. RelativeLayout下动态设置子控件居中:
RelativeLayout.LayoutParams lp=new RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT);
lp.addRule(RelativeLayout.ALIGN_PARENT_RIGHT, RelativeLayout.TRUE);
lp.addRule(RelativeLayout.ALIGN_PARENT_TOP, RelativeLayout.TRUE);
btn1.setLayoutParams(lp);
LayoutParams继承于Android.view.ViewGroup.LayoutParams LayoutParams封装了Layout的高,宽等信息,假设一个区域由一个Layout占领,如果将一个View添加到Layout中,需要告诉Layout用户期望的布局方式,即将一个认可的LayoutParams传递进去。 LayoutParams描述的宽高的值可以设置为下边2个值中的任何一种: 一个确定的值; FILL_PARENT,即View希望和父容器一样大; WRAP_CONTENT,指当前的View的大小只需要包裹住View里面的内容即可。 Java代码 private LinearLayout layout; layout = (LinearLayout)findViewById(R.id.layout); TextView view = new TextView(Activity01.this); view.setText("Text View"); LinearLayout.LayoutParams params = new LinearLayout.LayoutParams( LinearLayout.LayoutParams.FILL_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT); layout.addView(view,params); LayoutInflater的作用类似于findViewById(),不同点是LayoutInflater是用来找layout下xml布局文件,并且实例化!而findViewById()是找具体xml下的具体widget控件(如:Button,TextView等)。LayoutInflater的作用是将一个XML文档变成一个View,使用的典型是在Activity的onCreate方法里 Java代码 LayoutInflater inflate = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);//LayoutInflater需要通过getSystemService方法来获得,而不能直接实例化 RelativeLayout layoutLeft = (RelativeLayout) inflate.inflate(R.layout.left, null);//调用inflate方法将left.xml进行解析,并生成一个RelativeLayout布局这里另外还从其他地方引入了LayoutInflater的用法:在实际开发中LayoutInflater这个类还是非常有用的,它的作用类似于findViewById()。不同点是LayoutInflater是用来找res/layout/下的xml布局文件,并且实例化;而findViewById()是找xml布局文件下的具体widget控件(如Button、TextView等)。具体作用:1、对于一个没有被载入或者想要动态载入的界面,都需要使用LayoutInflater.inflate()来载入;2、对于一个已经载入的界面,就可以使用Activiyt.findViewById()方法来获得其中的界面元素。LayoutInflater 是一个抽象类,在文档中如下声明:public abstract class LayoutInflater extends Object获得 LayoutInflater 实例的三种方式1. LayoutInflater inflater = getLayoutInflater();//调用Activity的getLayoutInflater()2. LayoutInflater inflater = LayoutInflater.from(context);3. LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);其实,这三种方式本质是相同的,从源码中可以看出:getLayoutInflater():Activity 的 getLayoutInflater() 方法是调用 PhoneWindow 的getLayoutInflater()方法,看一下该源代码:public PhoneWindow(Context context){super(context);mLayoutInflater = LayoutInflater.from(context);}可以看出它其实是调用 LayoutInflater.from(context)。LayoutInflater.from(context):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;}可以看出它其实调用 context.getSystemService()。结论:所以这三种方式最终本质是都是调用的Context.getSystemService()。另外getSystemService()是Android很重要的一个API,它是Activity的一个方法,根据传入的NAME来取得对应的Object,然后转换成相应的服务对象。以下介绍系统相应的服务。传入的Name 返回的对象 说明WINDOW_SERVICE WindowManager 管理打开的窗口程序LAYOUT_INFLATER_SERVICE LayoutInflater 取得xml里定义的viewACTIVITY_SERVICE ActivityManager 管理应用程序的系统状态POWER_SERVICE PowerManger 电源的服务ALARM_SERVICE AlarmManager 闹钟的服务NOTIFICATION_SERVICE NotificationManager 状态栏的服务KEYGUARD_SERVICE KeyguardManager 键盘锁的服务LOCATION_SERVICE LocationManager 位置的服务,如GPSSEARCH_SERVICE SearchManager 搜索的服务VEBRATOR_SERVICE Vebrator 手机震动的服务CONNECTIVITY_SERVICE Connectivity 网络连接的服务WIFI_SERVICE WifiManager Wi-Fi服务TELEPHONY_SERVICE TeleponyManager 电话服务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)示意代码:LayoutInflater inflater = (LayoutInflater)getSystemService(LAYOUT_INFLATER_SERVICE);View view = inflater.inflate(R.layout.custom, (ViewGroup)findViewById(R.id.test));//EditText editText = (EditText)findViewById(R.id.content);// errorEditText editText = (EditText)view.findViewById(R.id.content);对于上面代码,指定了第二个参数 ViewGroup root,当然你也可以设置为 null 值。注意:·inflate 方法与 findViewById 方法不同;·inflater 是用来找 res/layout 下的 xml 布局文件,并且实例化;·findViewById() 是找具体 xml 布局文件中的具体 widget 控件(如:Button、TextView 等)。例子:
- public class LayoutInflaterActivity extends Activity {
- private EditText et;
- private Button btn;
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- // 第一种方法
- LayoutInflater inflater = LayoutInflater.from(this);
- View layout = inflater.inflate(R.layout.main, null);
- // 第二种方法
- // LayoutInflater inflater = getLayoutInflater();
- // View layout = inflater.inflate(R.layout.main, null);
- // 第三种方法
- // LayoutInflater inflater = (LayoutInflater)getSystemService(LAYOUT_INFLATER_SERVICE);
- // View layout = inflater.inflate(R.layout.main, null);
- // 这里是通过事先获得的布局文件来实例化具体控件,并且可以根据情况自定义控件
- et = (EditText) layout.findViewById(R.id.edittext);
- et.setBackgroundColor(Color.YELLOW);
- btn = (Button) layout.findViewById(R.id.btn);
- btn.setBackgroundColor(Color.CYAN);
- // 显示
- setContentView(layout);
- }
- }