在使用SwipebackLayout出現的bug以及解決的方法

若蘭__明月發表於2018-01-03

在使用SwipebackLayout出現的bug以及解決的方法

###滑動返回黑屏問題 解決的方法,在主題style中自定義一個主題,加入以下的一句話

 <item name="android:windowIsTranslucent">true</item>
複製程式碼

整體也就是如下的主題

 <!-- App Theme Light -->
    <style name="BaseAppThemeLight" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="android:windowIsTranslucent">true</item>
    </style>
複製程式碼

然後在AndroidManifest檔案中使用這個主題,一般推薦在實現了滑動返回的activity中使用主題,不過為了方便也可以在application節點下使用(不過這個可能對於那些沒有這個滑動功能的activity會有影響,建議第一種)

 <activity android:name=".SecondActivity"
            android:theme="@style/BaseAppThemeLight"></activity>
複製程式碼

相關文章