Remove the title bar and border from Android Dialog

Source: Internet
Author: User

Add the following to the values/style. xml file:Code(If the file does not exist, create an XML file named style. xml)

 
<! -- Override system pop-up dialog --> <style name = "mydialogtheme" parent = "Android: theme. dialog "> <item name =" Android: windowframe "> @ null </item> <item name =" Android: incluwisfloating "> true </item> <item name =" Android: javaswistranslucent "> false </item> <item name =" Android: windownotitle "> true </item> <! -- Remove title --> <item name = "Android: windowcontentoverlay"> @ null </item> <item name = "Android: backgrounddimenabled "> false </item> <item name =" Android: windowbackground "> @ null </item> <! -- Remove background color -->
 
</Style>

Remove the background color border and set the background color in your layer.

Step 2 add Android: theme = "@ style/mydialogtheme" to your registered activity in androidmanifest. XML, which is the style name above.

<Activity Android: Name = ". logindialog" Android: theme = "@ style/mydialogtheme" Android: screenorientation = "portrait"/>

Pop-up Layer Method

Intent intent = new intent (detail_goods.this, logindialog. Class );
Startactivity (intent );

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.