如何创建自定义主题并在 Android 应用程序中使用它?
如何创建自定义主题并在代码中使用它?
菜单中如何实现主题选项并申请活动?
How to create a custom themes and use it in the code?
In menu how to implement theme option and apply for the activity?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Android 开发者网站上有一个很好的样式和主题指南。基本上你需要做的是
即,
将资源文件命名为
themes.xml
非常有用,这样可以更轻松地识别这些样式的用途。将定义的样式应用到活动或视图你想要
程式化。您可以
There's a nice Styles and Themes guide on the android developers site. Basically what you need to do is
i.e.
It's useful to name the resource file
themes.xml
so it's easier to recognize what those styles are used for.Apply the defined style to the activity or view that you want
stylized. You can either
<activity android:theme="@style/Theme.MyGreenTheme"/>
这是一个完美的网站,它创建了创建自定义 UI 所需的所有必要文件。几周前我亲自使用过它,它对我来说非常有效。
我与这个网站没有任何关系,但发现它非常有趣。
希望这可以帮助你:)
This is perfect site which creates all the necessary files you need to make a custom UI. I used it personally a couple of weeks ago and it worked great for me.
I have no affiliation with this site but found it very interesting.
Hope this may help you :)
创建自定义视图:
public class CustomTextView extends AppCompatTextView {
Create Custome Views:
public class CustomTextView extends AppCompatTextView {