在activity使用的theme 中若 样式中包含android:background surface 只显示背景色了
<style name="AppBaseTheme" parent="android:Theme.Light">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowNoTitle">true</item>
</style>
<style name="AppTheme" parent="AppBaseTheme">
<item name="android:background">@color/app_bg</item>
</style>
<!-- 若样式中包含android:background surface 只显示背景色了-->
<activity
android:name="cn.chinagps.jicha.camera.CameraActivity"
android:label="@string/app_lable_name"
android:theme="@style/AppBaseTheme"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>