19 Temmuz 2016 Salı

LayoutInflater Sınıfı

Giriş
Şu satırı dahil ederiz.
import android.view.LayoutInflater;
Bu nesne Contex nesnesi kullanılarak elde edilir.

constructor
Şöyle yaparız.
LayoutInflater inflater = (LayoutInflater) context.getSystemService(
 Context.LAYOUT_INFLATER_SERVICE);
inflate metodu
Şöyle yaparız.
View v = inflater.inflate (R.layout.activity_main, parent);
parent null verilebilir. Şöyle yaparız.
View v = inflater.inflate (R.layout.activity_main, null);

Hiç yorum yok:

Yorum Gönder