所以我的应用程序上都有按钮和布局,有时它们的背景颜色设置为强调颜色,在我的情况下是绿色...我正在测试应用程序,它有时会淡化颜色这些视图无论是布局还是按钮。通过褪色我的意思是我仍然可以看到颜色为绿色,但就像它上面有一个白色层,它使视图几乎不可见,一旦视图具有强调色作为背景,有时会发生在应用程序上它通常在我运行时显示重点颜色,这只发生在kit-kat(4.4)而非lollypop或marshmallow
这是一个带背景色的线性布局片段
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="@color/colorAccent"
android:gravity="end"
android:id="@+id/bottom"
android:layout_alignParentBottom="true">
<android.support.v7.widget.AppCompatButton
android:id="@+id/close_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:textColor="@color/textColorPrimary"
android:text="Close"
android:textSize="16sp"
android:layout_marginEnd="10dp"
android:layout_gravity="end"/>
<android.support.v7.widget.AppCompatButton
android:id="@+id/comments_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:textColor="@color/textColorPrimary"
android:text="Comments"
android:textSize="16sp"
android:layout_marginEnd="16dp"
android:layout_gravity="end"/>
</LinearLayout>
http://geniusesng.com/images/first.png
这是一个按钮片段
<android.support.v7.widget.AppCompatButton
android:layout_width="0px"
android:layout_height="match_parent"
android:layout_weight="2"
android:layout_gravity="center_vertical"
android:id="@+id/showSettingsBtn"
android:textColor="@color/textColorPrimary"
android:background="@color/colorAccent"/>
这个按钮显示不是,但有时会变白
任何帮助将被理解为何发生衰落