Android 開發中 LayoutInflater 詳解

來源:互聯網
上載者:User

 在實際開發種LayoutInflater這個類還是非常有用的,它的作用類似於findViewById(),不同點是LayoutInflater是用來找layout下xml布局檔案,並且執行個體化!而findViewById()是找具體xml下的具體widget控制項(如:Button,TextView等)。有很多地方可以使用:對於一個沒有被載入或者想要動態載入的介面, 都需要使用inflate來載入. 如BaseAdapter的getView中,自訂Dialog中取得view中的組件widget等等。 下面這是個簡單的BaseAdapter: 首先聲明LayoutInflater [java]  private LayoutInflater inflater=null;   在getView()方法裡使用 [java]  inflater=LayoutInflater.from(context);      View v=inflater.inflate(R.layout.listview_item, null);   完整代碼:[java] public class PullXmlAdapter extends BaseAdapter {      private List<Book> list=null;      private Context context=null;      private LayoutInflater inflater=null;        public PullXmlAdapter(Context context,List<Book> list) {      // TODO Auto-generated constructor stub      this.context=context;      this.list=list;  }      @Override      public int getCount() {          // TODO Auto-generated method stub          return list.size();      }        @Override      public Object getItem(int arg0) {          // TODO Auto-generated method stub          return arg0;      }        @Override      public long getItemId(int arg0) {          // TODO Auto-generated method stub          return arg0;      }        @Override      public View getView(int arg0, View arg1, ViewGroup arg2) {          // TODO Auto-generated method stub          inflater=LayoutInflater.from(context);          View v=inflater.inflate(R.layout.listview_item, null);          TextView tv=(TextView)v.findViewById(R.id.lisview_item_tv);          tv.setText(list.get(arg0).getName());          return v;      }    }   

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.