LinearLayout在android

时间:2016-03-06 14:29:50

标签: android xml android-layout

这个问题正在考验我的耐心,我正在设计一个布局,这是我到目前为止所处的位置。检查下图

enter image description here

以上部分" Save"按钮显示完整的黑色背景,一个带货币和EditText。

我实际上要做的是删除货币代码下面的两个EditText的下划线。我对此thread遵循了不同的建议,因此我将linearLayout背景设置为#80000000。但是下划线仍然在EditBox下方,它破坏了我的线性布局。

因此,我决定删除它并尝试别的东西。当我从任何地方删除该行代码并运行该程序。我仍然在我的应用程序中获得黑色背景。

这是我的linearLayout

的xml代码
<LinearLayout
        android:id="@+id/layout1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:layout_weight="2"
        android:paddingTop="10dp"
        android:layout_marginBottom="30dp"
        android:background="@drawable/custom_border"
        >
        <!--This layout is for typing currency values-->
        <!--Creating two more sub linearLayout, to seperate two sections of
        lef currency and right currency
         android:background="@drawable/border_inner_linear"
        -->
        <LinearLayout
            android:id="@+id/leftCurrencySection"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="left"
            android:layout_weight="1"
            android:orientation="vertical"

            >

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="GBP"
                android:textSize="30dp"
                android:textColor="#ffffff"
                android:textAllCaps="true"
                android:textStyle="bold"
                />

            <EditText
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="0.00"
                android:textSize="30dp"
                android:textColor="#ffffff"
                android:textAllCaps="true"
                android:textStyle="bold"

                />

        </LinearLayout>

        <LinearLayout
            android:id="@+id/rightCurrencySection"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="right"
            android:layout_weight="1"
            android:orientation="vertical">

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="right"
                android:text="USD"
                android:textSize="30dp"
                android:textColor="#ffffff"
                android:textAllCaps="true"
                android:textStyle="bold"
                />

            <EditText
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="right"
                android:text="0.00"
                android:textSize="30dp"
                android:textColor="#ffffff"
                android:textAllCaps="true"
                android:textStyle="bold"

                />

        </LinearLayout>

    </LinearLayout>

有人可以看到,我的LinearLayout中没有任何显示黑色的内容,ID为layout1

这是我正在获得的丑陋的屏幕布局

enter image description here

要问我这可能是愚蠢的,但我的应用程序是否会存储某种缓存,因为它显示相同的旧布局?

提前致谢

修改

以下是布局的完整代码

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:background="@drawable/layer_list"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:showIn="@layout/activity_main"
    tools:context=".MainActivity"
    android:orientation="vertical"
    android:weightSum="5"
    >

    <LinearLayout
        android:id="@+id/layout1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:layout_weight="2"
        android:paddingTop="10dp"
        android:layout_marginBottom="30dp"
        android:background="@drawable/custom_border"
        >
        <!--This layout is for typing currency values-->
        <!--Creating two more sub linearLayout, to seperate two sections of
        lef currency and right currency
         android:background="@drawable/border_inner_linear"
        -->
        <LinearLayout
            android:id="@+id/leftCurrencySection"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="left"
            android:layout_weight="1"
            android:orientation="vertical"

            >

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="GBP"
                android:textSize="30dp"
                android:textColor="#ffffff"
                android:textAllCaps="true"
                android:textStyle="bold"
                />

            <EditText
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="0.00"
                android:textSize="30dp"
                android:textColor="#ffffff"
                android:textAllCaps="true"
                android:textStyle="bold"
                android:background="@null"
                />

        </LinearLayout>

        <LinearLayout
            android:id="@+id/rightCurrencySection"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="right"
            android:layout_weight="1"
            android:orientation="vertical">

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="right"
                android:text="USD"
                android:textSize="30dp"
                android:textColor="#ffffff"
                android:textAllCaps="true"
                android:textStyle="bold"
                />

            <EditText
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="right"
                android:text="0.00"
                android:textSize="30dp"
                android:textColor="#ffffff"
                android:textAllCaps="true"
                android:textStyle="bold"
                android:background="@null"
                />

        </LinearLayout>

    </LinearLayout>
    <!--End of This layout is for typing currency values-->

    <LinearLayout
        android:id="@+id/buttonSection"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:layout_weight="1"
        >
        <!--This layout is for save and change currency buttons-->
            <Button
                android:id="@+id/saveButton"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="Save"/>

                <Button
                    android:id="@+id/currencyButton"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:text="Save"/>
    </LinearLayout>
    <!--End of  save and change currency buttons-->

    <!--Begin Layout for calculator begin-->

    <GridLayout 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:columnCount="3"
        android:layout_gravity="center"
        android:orientation="horizontal"
        android:layout_weight="1"
        >


        <Button android:text="1"
            android:background="@null"
            />

        <Button android:text="2" />

        <Button android:text="3" />



        <Button android:text="4" />

        <Button android:text="5" />

        <Button android:text="6" />



        <Button android:text="7" />

        <Button android:text="8" />

        <Button android:text="9" />


        <Button android:text="." />

        <Button android:text="0" />

        <Button android:text="Del" />


    </GridLayout>
    <!--End Layout for calculator-->
    <!--End Layout for calculator End-->


</LinearLayout>

编辑:自定义xml代码

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:left="-10dp" android:right="-10dp"  android:top="0dp"
        android:bottom="0dp">
        <shape android:shape="rectangle">
            <stroke android:width="3dp" android:color="#faf8f8" />
        </shape>
    </item>
</layer-list>

3 个答案:

答案 0 :(得分:0)

删除线性布局的背景。

如果要删除edittext中的下划线,请将该edittext的背景设置为null。

android:background="@null"

<EditText
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@null"
    android:gravity="right"
    android:text="0.00"
    android:textSize="30dp"
    android:textColor="#ffffff"
    android:textAllCaps="true"
    android:textStyle="bold" />

答案 1 :(得分:0)

机器人:背景=&#34; @空&#34;将删除编辑文本的下划线。我认为你因为自定义xml而变黑了。您是否也可以共享该自定义xml,以便我们可以解决此问题。

答案 2 :(得分:0)

<TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
        android:backgroundTint="@color/white
        android:gravity="right"
                android:text="USD"`enter code here`
                android:textSize="30dp"
                android:textColor="#ffffff"
                android:textAllCaps="true"
                android:textStyle="bold"
                />

            <EditText
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
        android:backgroundTint="@color/white"
        android:gravity="right"
                android:text="0.00"
                android:textSize="30dp"
                android:textColor="#ffffff"
                android:textAllCaps="true"
                android:textStyle="bold"

                />