android中的自定义进度对话框?

时间:2010-04-03 13:34:25

标签: android progressdialog

我按照文档中customdialog example中的步骤操作,但是我得到了这个例外。有什么想法吗?

04-03 18:50:28.787: VERBOSE/Bru_Press_Tab(750): Exception in Tabsjava.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.brown/com.example.brown.Bru_Press_MostRecent}: android.util.AndroidRuntimeException: requestFeature() must be called before adding content

1 个答案:

答案 0 :(得分:10)

最有可能的是,您在致电requestWindowFeature()后致电setContentView()。可能你没有直接这样做,但你继承的类是,因为你正在做一些其他的事情略有不合规。

所以,找出你在做什么并改变顺序,以便先调用requestWindowFeature()

例如,我的一本书中的here is a sample project使用了标题栏中的进度指示器,因此需要调用requestWindowFeature()。在调用活动onCreate()之前,我必须在setContentView()中执行此操作。