Android添加css文件

发布于 2024-11-08 23:36:42 字数 79 浏览 0 评论 0原文

我想在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

掀纱窥君容 2024-11-15 23:36:42

如果您正在开发Android本机应用程序,则需要通过xml文件设置样式。 Android 不支持 css 文件。如果您正在开发 Android Web 应用程序,您可以像普通 Web 应用程序一样使用 css 样式。

以下是如何为 TextView 设置样式的示例。

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"  
    android:layout_height="fill_parent"
    android:padding="10dp" 
    android:textSize="16sp" android:textColor="#ffffff"
    android:textStyle="bold" android:background="@drawable/border_cell">
</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.

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"  
    android:layout_height="fill_parent"
    android:padding="10dp" 
    android:textSize="16sp" android:textColor="#ffffff"
    android:textStyle="bold" android:background="@drawable/border_cell">
</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

时间海 2024-11-15 23:36:42

您可以在 android.css 中添加 CSS/html 文件。复制asserts文件夹中的CSS或Html文件,然后将其用作网络链接。

 link.loadUrl("file:///android_asset/html/test.html");

You can add CSS/html file in android. Copy the CSS or Html file in asserts folder then use it as weblink.

 link.loadUrl("file:///android_asset/html/test.html");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文