Android的theme屬性用來定義應用程序或活動的樣式和外觀。通過在AndroidManifest.xml文件中的應用程序或活動標簽中使用theme屬性,可以應用一組預定義的樣式和外觀設置。以下是theme屬性的一些常見用法:
<application
android:theme="@style/MyAppTheme">
...
</application>
<activity
android:name=".MainActivity"
android:theme="@style/MyActivityTheme">
...
</activity>
<style name="MyAppTheme" parent="Theme.AppCompat.Light">
<item name="android:windowBackground">@color/background_color</item>
<item name="android:textColorPrimary">@color/text_color_primary</item>
</style>
<style name="MyActivityTheme" parent="Theme.AppCompat.Light">
<item name="android:windowNoTitle">true</item>
<item name="android:windowActionBar">false</item>
</style>
這些是theme屬性的一些常見用法。通過使用theme屬性,可以輕松地修改應用程序或活動的樣式和外觀,以滿足特定的設計需求。