1. 程式人生 > >android 渲染元件 在Java類寫法

android 渲染元件 在Java類寫法

  LayoutInflater inflater = LayoutInflater.from(context);

 SeekBar seekbar =  (SeekBar)inflater.inflate(R.layout.seekbar, null);

注意:使用填充佈局時,兩種寫法
 1.  LayoutInflater.from(Context context).inflate(int resource, ViewGroup root);
 2.  activity.getLayoutInflater().inflate(int resource, ViewGroup root);