短視訊系統原始碼,android 真正的全屏沉浸式體驗

zhibo系統開發發表於2022-05-16

短視訊系統原始碼,android 真正的全屏沉浸式體驗

1 清單檔案中application中引入主題 android:theme=“@style/AppTheme”

<application
        android:name=".MyApp"
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme"
        android:usesCleartextTraffic="true"
        tools:replace="android:allowBackup">

2自定義style,主要是這個屬性:@color/blue

    <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/blue</item>
        <item name="colorAccent">@color/colorAccent</item>
        <item name="textAllCaps">false</item>
    </style>

以上就是 短視訊系統原始碼,android 真正的全屏沉浸式體驗,更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2894449/,如需轉載,請註明出處,否則將追究法律責任。

相關文章