Lagi-lagi, karena ada yang sms menanyakan:
"mbak, bisa gak sih kita ngasih gambar di AlertDialog?"
Jawabannya bisa, salah satu caranya adalah sebagai berikut:
"mbak, bisa gak sih kita ngasih gambar di AlertDialog?"
Jawabannya bisa, salah satu caranya adalah sebagai berikut:
Langkah pertama
Buat satu file XML baru dengan nama dialog_layout.xml<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_gravity="center" android:gravity="center" android:orientation="vertical" > <ImageView android:id="@+id/imageView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/read" /> </LinearLayout>
Langkah kedua
Modifikasi main.xml<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context=".MainActivity" > <Button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@+id/textView1" android:layout_centerHorizontal="true" android:layout_marginTop="46dp" android:text="Button" /> </RelativeLayout>
Langkah ketiga
Aku buatin class sendiri untuk AlertDialog. Sintaks seperti dibawah ini:package com.example.lagi; import android.app.AlertDialog; import android.content.Context; import android.content.DialogInterface; import android.view.LayoutInflater; import android.view.View; public class DialogCoba extends AlertDialog{ protected DialogCoba(Context context) { super(context); // AlertDialog.Builder builder = new AlertDialog.Builder(context); LayoutInflater inflater = LayoutInflater.from(context); final View view = inflater.inflate(R.layout.dialog_layout, null); setView(view); setButton("Click Me!", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dlg, int sumthin) { } }); } }
Langkah keempat
Lengkapi MainActivitypackage com.example.lagi; import android.os.Bundle; import android.app.Activity; import android.view.Menu; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; public class MainActivity extends Activity implements OnClickListener{ private Button btn; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); btn = (Button) findViewById(R.id.button1); btn.setOnClickListener(this); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.main, menu); return true; } @Override public void onClick(View v) { if (v == btn){ DialogCoba coba = new DialogCoba(this); coba.setMessage("Percayalah, ini pesan..."); coba.show(); } } }
Super bu :D
BalasHapus