如何在 pixate-freestyle-android 中合并多个 css 文件

how to merge several css files in pixate-freestyle-android

我的XML布局:

<LinearLayout android:orientation="vertical"...>

    <View android:id="@+id/bar" .../>
    <TextView android:id="@+id/text" .../>

</LinearLayout>

我有default.css:

#bar{ background-color: red; }
#text{ color: red; }

custom.css:

#text{ color: green; }

如果我执行“PixateFreestyle.init(this);”,我可以通过应用 default.css(视图 - 红色,TextView - 红色)看到.

如果我执行“PixateFreestyle.init(this, "custom.css");”,我可以通过应用 custom.css(查看 -不是红色,视图的默认值,TextView - 绿色)。

如何合并default.css和custom.css?我想要 View - 红色,TextView - 绿色。

换句话说,我想用两个应用样式的文件初始化库。

仅在 default.css 中更改为绿色,因为如果您合并两个 css 文件,稍后将只需要一个文件,或者您可以在 css 文件后使用动态更改 css 文件秒但一次合并我认为这是不可能的。

为了解决我的问题,我使用 default.css,然后我下载 custom.css 并在默认情况下应用它。