@Override
public void onCreate(Bundle savedInstanceState) {
setTheme(R.style.translucent);
requestWindowFeature(Window.FEATURE_NO_TITLE);
super.onCreate(savedInstanceState);
setContentView(R.layout.myview);
}
R.style.translucent在manifest中用android:theme="@style/translucent"设置是对的。。。
遇到相同的问题,求解……