我按照文档中的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
解决方法:
最有可能的是,在调用setContentView()之后调用requestWindowFeature().可能是你没有直接这样做,但你继承的类是,因为你正在做一些其他的事情略微不按顺序.
因此,找出您正在执行此操作的位置并更改顺序,以便首先调用requestWindowFeature().
例如,我的一本书中的here is a sample project使用了标题中的进度指示器,因此需要调用requestWindowFeature().在调用活动上的setContentView()之前,我必须在onCreate()中执行此操作.