禁止横竖屏切换
在网上找的方法只有 android:configChanges="orientation|keyboardHidden|screenSize" 这一句话,设置了不管用。
经过试验,必须在进入页面的时候就加方向:android:screenOrientation="portrait"
例如:<activity
android:name="com.example.circleprogressbar.zxxxxxxx"
android:screenOrientation="portrait" //让它竖屏
android:configChanges="orientation|keyboardHidden|screenSize" 禁止翻转
android:label="@string/app_name"
>