在Android中覆盖对话框标题布局

时间:2012-03-15 11:05:59

标签: android layout dialog styles themes

我在我的Android应用程序中为对话框创建了一个自定义主题,我计划覆盖用于对话框标题的布局。我在标准的android Theme中看到了这个属性看起来像要修改的属性。

<item name="dialogTitleDecorLayout">@layout/dialog_title</item>

但是当我尝试在Theme

中覆盖它时
<style name="Theme.Dialog.MyDialog" parent="android:Theme.Dialog">
    <item name="android:windowBackground">@android:color/black</item>
    <item name="android:dialogTitleDecorLayout">@layout/my_dialog_title</item>
</style>

我看到以下错误:

  

找不到与给定名称匹配的资源:attr   &#39;机器人:dialogTitleDecorLayout&#39;

为什么我无法更改它,如何知道哪些属性可以更改,哪些属性无法更改?

1 个答案:

答案 0 :(得分:1)

无法像这样覆盖该项目。您必须使用所需的布局自定义对话框,然后在布局中您必须在此处应用主题以满足您的要求。

dialog_title.xml

<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<TextView
    android:id="@+id/text" 
    android:text="@string/tell_a_friend"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingLeft="8dip"
    android:paddingTop="12dip"
    android:paddingBottom="12dip"
    style="@style/bigTextWhite" />

</LinearLayout>

//这是您的对话框出现在onclick按钮事件

中的方法
public void onClickHelp(View v) {
    final Dialog duDialog = new Dialog(this);
    duDialog.setContentView(R.layout.data_usage);
    duDialog.getWindow().setBackgroundDrawableResource(R.color.title_text);

    duDialog.setTitle("Data Usage"); // I would like to set the color and add button here
    ListView data = (ListView) duDialog.findViewById(R.id.DataUsage);
    duCursor = Data.getAll(db);
    startManagingCursor(duCursor);
    duAdapter = new DataAdapter(duCursor);
    data.setAdapter(duAdapter);
    duDialog.show();

}