程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> activity-添加content前requestFeature()必須被調用?

activity-添加content前requestFeature()必須被調用?

編輯:編程綜合問答
添加content前requestFeature()必須被調用?

我試圖實現一個自定義titlebar.
以下是Helper class:

import android.app.Activity;
import android.view.Window;

public class UIHelper {
    public static void setupTitleBar(Activity c) {
        final boolean customTitleSupported = c.requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);

        c.setContentView(R.layout.main);

        if (customTitleSupported) {
            c.getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.titlebar);
        }
    }
}

這是在onCreate()中調用的方法:

@Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setupUI();
    }

private void setupUI(){
         setContentView(R.layout.main);
         UIHelper.setupTitleBar(this);
    }

錯誤提醒:

requestFeature() must be called before adding content

在添加content前requestFeature()必須被調用嗎?

最佳回答:


正如提示裡說的,不要在requestFeature()調用setContentView()。
另一個選擇是使用AsyncTask對話框。

public class CustomDialog extends AlertDialog {

   private View content;

   public CustomDialog(Context context) {
       super(context);

       LayoutInflater li = LayoutInflater.from(context);
       content = inflater.inflate(R.layout.custom_view, null);

       setUpAdditionalStuff(); 
       setView(content);           
   }

   private void setUpAdditionalStuff();
       // ...
   }

   // 在 onPrepareDialog() 方法中調用 ((CustomDialog) dialog).prepare()   
   public void prepare() {
       setTitle(R.string.custom_title);
       setIcon( getIcon() );
       // ...
   }
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved