android操纵背景颜色

时间:2016-05-30 12:13:48

标签: android

我正在尝试使用简单的设计制作应用。 我给整个布局一个橙色背景,但我想要顶部(片段上方是白色)

我试图更改标题的背景,但是下方和上方的这些小边距线仍然是白色,我该如何更改? 我尝试改变保证金,但没有成功

(见图) Image http://i.stack.imgur.com/CwNnL.png     在这里输入代码

以下是XML代码:

<LinearLayout
android:layout_height="match_parent"
android:layout_width="match_parent"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android"
android:background="#e5a511">


<TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textAppearance="?android:attr/textAppearanceLarge"
    android:text="Location Weather"
    android:id="@+id/textView"
    android:layout_centerVertical="true"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="10dp"
    android:layout_marginBottom="20dp"
    android:gravity="center_vertical|center_horizontal"
    android:textSize="30dp"
    android:background="#ffffff" />

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:map="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/map"
    android:name="com.google.android.gms.maps.SupportMapFragment"
    android:layout_width="match_parent"
    android:layout_height="300dp"
    tools:context="com.tos.nav42.memorableplaces.MapsActivity"
    android:layout_above="@+id/textView"
    android:layout_alignParentStart="true" />

<TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textAppearance="?android:attr/textAppearanceLarge"
    android:id="@+id/tempTV"
    android:layout_below="@+id/textView"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="10dp"
    android:gravity="center_vertical|center_horizontal" />

<TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textAppearance="?android:attr/textAppearanceLarge"
    android:id="@+id/descriptionTV"
    android:layout_marginTop="10dp"
    android:layout_below="@+id/tempTV"
    android:layout_alignStart="@+id/tempTV"
    android:capitalize="none"
    android:clickable="false"
    android:gravity="center_vertical|center_horizontal" />

0 个答案:

没有答案