Hey i'm in need of some help. I want my menu item "info" to create a
custom dialog. Yet i appear to to be having trouble:
this is in my main java file
@Override
                public boolean onCreateOptionsMenu(Menu menu) {
                    MenuInflater inflater = getMenuInflater();
                    inflater.inflate(R.menu.options_menu, menu);
                    return true;
          }
          @Override
      protected Dialog onCreateDialog(int id) {
              Dialog dialog = null;
              switch (id) {

                      case R.id.info:
                              dialog = new Dialog(this);
 
dialog.setContentView(R.layout.custom_dialog);
                              dialog.setTitle("MyTitle");
                              break;


              }
              return dialog;
      }

then i have:
custom_dialog.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/
android"
              android:id="@+id/layout_root"
              android:orientation="horizontal"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent"
              android:padding="10dp"
              >
    <ImageView android:id="@+id/image"
               android:layout_width="wrap_content"
               android:layout_height="fill_parent"
               android:layout_marginRight="10dp"
               />
    <TextView android:id="@+id/text"
              android:layout_width="wrap_content"
              android:layout_height="fill_parent"
              android:textColor="#FFF"
              android:text="@string/hello"
              />
</LinearLayout>

Any help would be much appreciated,

regards

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

To unsubscribe from this group, send email to 
android-developers+unsubscribegooglegroups.com or reply to this email with the 
words "REMOVE ME" as the subject.

Reply via email to