Custom Dialog Hasn't Divider Under The Title
At the official documentation there is an article of how to create custom dialogs. And there is also a picture of result dialog which have gradient border under it's title. When I
Solution 1:
Yes this is a normal behavior for custom dialog. To have the divider below title use something like:
<Viewandroid:layout_width="fill_parent"android:layout_height="0.03dip"android:layout_marginLeft="5dip"android:layout_marginRight="5dip"android:layout_marginBottom="5dip"android:background="#404040" />
in your custom layout above the layout in which you have the imageview and textview.
Post a Comment for "Custom Dialog Hasn't Divider Under The Title"