Android添加css文件
我想在我的 Android 应用程序中添加一个 css 文件来更改外观。
如何在 Android 应用程序中添加和实现 CSS?
I want to add a css file in my Android application to change the look and feel.
How can I add and implement CSS in an Android application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您正在开发Android本机应用程序,则需要通过xml文件设置样式。 Android 不支持 css 文件。如果您正在开发 Android Web 应用程序,您可以像普通 Web 应用程序一样使用 css 样式。
以下是如何为 TextView 设置样式的示例。
我们有各种可以应用样式的属性。
如需进一步参考,请参阅以下链接。
http://developer.android.com/guide/topics/ui/themes.html
If you are developing an android native application, you need to set your styles through xml file. Android does not support css files. and if you are developing an android web application you can css styles as in normal web application.
Following is the example of how to set styles to a TextView.
We have various attributes through which we can apply styles.
For further reference please refer to the following link.
http://developer.android.com/guide/topics/ui/themes.html
您可以在 android.css 中添加 CSS/html 文件。复制asserts文件夹中的CSS或Html文件,然后将其用作网络链接。
You can add CSS/html file in android. Copy the CSS or Html file in asserts folder then use it as weblink.