如何从自定义对话框中删除标题?

时间:2015-03-25 14:56:54

标签: android dialog themes manifest

我正在尝试实现自定义对话框。我为我的对话框的自定义视图创建了一个单独的xml。在这里,我讨厌那个对话框中出现的那个大黑条(标题栏)。我需要删除该标题栏,我想要它与我的xml文件完全一样。

如何从对话框中删除标题栏。??

提前致谢..

这是我的自定义对话框的about.xml。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" 
    android:background="#3BB9FF"
    >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Author : M.Ganesh Babu"

        android:textAppearance="?android:attr/textAppearanceLarge" />

    <TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="This is my very first android game app..  Hope everyone like it. Contact me at kbxxxxxsh@gmail.com"
        android:textAppearance="?android:attr/textAppearanceMedium"  android:textColor="#FF7F3B" />

</LinearLayout>

My Custom Dialog Box

这是我在清单中写的代码。

<activity
            android:name=".About"
            android:label="@string/app_name" 
            android:theme="@android:style/Theme.Dialog"
            >

1 个答案:

答案 0 :(得分:3)

使用,

dialog.requestWindowFeature(Window.FEATURE_NO_TITLE); 

前,

dialog.setContentView(R.layout.yourdialoglayout);