Chrome扩展程序渐变背景无法正常工作

时间:2018-11-09 03:44:08

标签: css google-chrome-extension

我正在使用Google Chrome扩展程序来替换新的标签页。 (和其他许多扩展一样)我在新标签页上有一个带有渐变的background-image标签,作为body标签的样式。加载新标签后,我将渐变垂直分成了大约30个部分,每个部分都有自己的渐变。它也发生在以下代码段中,但不在GitHub Pages中。 任何帮助表示赞赏。

Screenshot of page

代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:card_view="http://schemas.android.com/apk/res-auto"
            xmlns:app="http://schemas.android.com/apk/res-auto"
            android:id="@+id/activity_main"
            android:layout_width="match_parent"
            android:layout_height="match_parent">

<FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

    <android.support.v7.widget.CardView
            android:id="@+id/first"
            app:cardBackgroundColor="@android:color/white"
            app:cardCornerRadius="@dimen/cardview_default_radius"
            app:cardElevation="4dp"
            android:layout_width="match_parent"
            android:layout_height="80dp"
            android:layout_marginLeft="50dp"
            card_view:cardUseCompatPadding="true">

        <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="32dp">

            <TextView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:text="TEXT"
                    android:textSize="18sp"/>

        </RelativeLayout>

    </android.support.v7.widget.CardView>

</FrameLayout>

<ImageView
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:layout_marginLeft="32dp"
        android:background="#000000"
        android:layout_marginTop="15dp"
        android:contentDescription="@null"/>

</RelativeLayout>

0 个答案:

没有答案