LayoutInflater'i Class'dan çağırma
Aşağıdaki gibi bir LayoutInflater kullandığım bir kod parçacığı var. Bu kodları farklı activity'lerimde kullanıyorum. Kod tekrarı olmaması açısından bunu class'da kaydedip her defasında ilgili class'dan çağırmak istiyorum. Nasıl bir class yapısı olması lazım (hangi sınıftan extend etmesi lazım?) vs. bir yol gösterebilir misiniz? şimdiden teşekkürler
[code]
LayoutInflater inflater = (LayoutInflater)getLayoutInflater();
View customView = inflater.inflate(R.layout.cstm_login_page, null);
AlertDialog.Builder builder=new Builder(context);
builder.setView(customView); // Set the view of the dialog to your custom layout
builder.setTitle("Üye Olun/Kayıt Olun");
builder.setPositiveButton("Seçiniz", new DialogInterface.OnClickListener(){
@SuppressWarnings("deprecation")
@Override
public void onClick(DialogInterface dialog, int which) {
}});
// Create and show the dialog
builder.create().show();
[/code]