Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add title to the custom Dialog?

Tags:

android

dialog

How can i add title to this custom dialog??

enter image description here

I have tried like this

public void customDialog()
 {
  Dialog dialog=new Dialog(this);
  dialog.requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
  dialog.getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,R.string.app_name );
  dialog.setContentView(R.layout.dialog_submit);
  TextView edit_model=(TextView) dialog.findViewById(R.id.edit_model);
  edit_model.setText(android.os.Build.DEVICE);
  dialog.show();
 }//end of custom dialog function

I have tried to set title like this too..dialog.setTitle("Enter Details"); but this too didn't yielded any result. So how can i set title to this custom dialog??

This is my dialog_submit.xml file used for the custom dialog.

 <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:id="@+id/layout_root"
          android:orientation="vertical" 
          android:layout_width="fill_parent"
          android:layout_height="fill_parent"
          android:padding="10dp"
          >
  <TextView android:id="@+id/txt_name"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:textColor="#FFF"
          android:text="Name"
          android:textStyle="bold"
          />
  <EditText android:id="@+id/edit_name"
          android:layout_width="fill_parent"
          android:layout_height="wrap_content"
          android:layout_below="@+id/txt_name"
          />
<TextView android:id="@+id/txt_model"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:textColor="#FFF"
          android:layout_below="@+id/edit_name"
          android:text="Phone Model"
          />
<TextView android:id="@+id/edit_model"
          android:layout_width="fill_parent"
          android:layout_height="wrap_content"
          android:layout_below="@+id/txt_model"
          />

<Button android:id="@+id/but_cancel"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_below="@+id/edit_model"
          android:text="Cancel"     
          />
<Button android:id="@+id/but_submit"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_below="@+id/edit_model"
          android:layout_toRightOf="@+id/but_cancel"    
          android:text="Submit"     
          />                       
</RelativeLayout>
like image 769
Shijilal Avatar asked Jan 31 '11 15:01

Shijilal


3 Answers

Using some of your snippet:

public void customDialog() {
    Dialog dialog=new Dialog(this);
    dialog.requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
    dialog.setContentView(R.layout.dialog_submit);
    dialog.getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.custom_title);
    dialog.show();
}

res/layout/custom_title.xml

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="This is a custom title"/>
like image 112
jpmcosta Avatar answered Nov 17 '22 14:11

jpmcosta


Using your layout definition and this piece of code:

public void customDialog()
{
    Dialog dialog = new Dialog( this );
    dialog.setContentView( R.layout.dialog_submit );
    TextView edit_model = (TextView) dialog.findViewById( R.id.edit_model );
    edit_model.setText( android.os.Build.DEVICE );
    dialog.setTitle( "Enter Details" );
    dialog.show( );
}


I get this dialog:

enter image description here


So, you might want to try dialog.setTitle( "Enter Details" ) again.
I used the emulator running Android 2.1.

like image 3
Volker Voecking Avatar answered Nov 17 '22 14:11

Volker Voecking


Did you try?

dialog.setTitle(R.string.app_name);
like image 3
Cristian Avatar answered Nov 17 '22 15:11

Cristian