更改背景的颜色
这是我的应用程序:https://ibb.co/jgpfCa
我想让黑色变成白色,但似乎我找不到改变它的方法。
我想将其更改为白色,因为当我在我的recyclerview中应用内容填充时,它会在背景中显示黑色
这是我的xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:background="#fff"
android:orientation="horizontal">
<com.github.vipulasri.timelineview.TimelineView
android:id="@+id/time_marker"
android:layout_width="wrap_content"
android:layout_height="match_parent"
app:line="@color/colorPrimary"
app:lineSize="3dp"
app:markerSize="20dp" />
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginBottom="15dp"
android:layout_marginLeft="10dp"
android:layout_marginTop="15dp"
android:background="#fff"
android:backgroundTint="#fff"
app:cardElevation="1dp"
app:contentPadding="15dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:orientation="vertical">
<android.support.v7.widget.AppCompatTextView
android:id="@+id/text_timeline_date"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#994495"
android:textSize="12sp"
tools:text="24 JAN" />
<android.support.v7.widget.AppCompatTextView
android:id="@+id/text_timeline_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:textColor="@android:color/black"
tools:text="Order Successfully Completed" />
</LinearLayout>
</android.support.v7.widget.CardView>
</LinearLayout>
你可以像这样使用style.xml来达到这个目的
Style.xml
<resource>
<style name="AppTheme" parent="android:Theme.Light">
<item name="android:background">@color/white_opaque</item>
<item name="android:windowBackground">@color/white_opaque</item>
<item name="android:colorBackground">@color/white_opaque</item>
</style>
</resources>
Color.xml
<color name="white_opaque">#FFFFFFFF</color>
<color name="pitch_black">#FF000000</color>
清单文件
<application
.
.
android:theme="@style/AppTheme" >
</application>
你有错的#代码为白色。 白色是“#ffffffff”。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:background="#ffffffff"
android:orientation="horizontal">
链接地址: http://www.djcxy.com/p/88941.html