In my code, I have an AlertDialog
and a TextView
. I'd like display this TextView
in my AlertDialog
but I don't know how to do it. I don't know how to add the View
in a AlertDialog
.
I could show my code but I don't think it would be usefull.
Thank's
EDIT:
Thank's for all your answers. I just did a test and it works perfectly.
Here is my working code:
package com.example.testalertdialog;
import android.app.Activity;
import android.app.AlertDialog;
import android.os.Bundle;
import android.widget.LinearLayout;
import android.widget.TextView;
public class MainActivity extends Activity {
LinearLayout layout;
AlertDialog ad;
TextView tv1;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
layout = new LinearLayout(this);
ad = new AlertDialog.Builder(this).create();
tv1 = new TextView(this);
setContentView(layout);
tv1.setText("Test");
ad.setView(tv1);
ad.show();
}
}
Edit2: But why doesn't this code work ?
package com.example.testalertdialog;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.app.AlertDialog;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.LinearLayout;
import android.widget.TextView;
@SuppressLint("HandlerLeak")
public class MainActivity extends Activity implements OnClickListener{
LinearLayout layout;
AlertDialog ad;
TextView tv1;
Button b1;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
layout = new LinearLayout(this);
tv1 = new TextView(this);
b1 = new Button(this);
b1.setOnClickListener(this);
layout.addView(b1);
ad = new AlertDialog.Builder(this).create();
setContentView(layout);
tv1.setText("Test");
}
@Override
public void onClick(View v) {
if (v == b1) {
ad.setMessage("Chargement");
ad.show();
ad.setView(tv1);
}
}
}
In drawable create a file name custom_window_dialog_frame.xml
and then go to values folder open styles.xml and paste code below
Create a layout as you want to show. In my case i have done like in file dialog_layout_pro.xml
In MyTestClass.java Class
Custom Dialog will look like in image below. enjoy coding :)
Try this sample snippet code,
try this
http://www.mkyong.com/android/android-custom-dialog-example/
here you need to set your own layout .
like this
it will give you
textview
inside dialog.try this
//layout for textview
code:-
Another example of using the
setView
method:A view can be added to a
AlertDialog
using thesetView
method.Example: