Hi I am trying to design alert dialog as below 
I did the basic design as follows:
AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(context);
alertDialogBuilder.setTitle(R.string.share);
final EditText message = new EditText(context);
message.setGravity(Gravity.TOP);
message.setLines(10);
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(
(int) LayoutParams.MATCH_PARENT,
(int) LayoutParams.MATCH_PARENT);
Please give suggestion to me, how can I achieve this with alert dialog or another way
Check out my tutorial.
http://www.androidianlabs.com/custom-android-dialogs.html
Hope that helps!