如何在EditText中修复复制/粘贴布局错误

时间:2015-03-18 12:01:17

标签: android

我在布局中有自己的EditText,我用它来搜索。但是在我的布局顶部选择EditText bug的文本。

请参阅下面的照片,了解我的意思 image

布局代码:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:background="#000"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.tellfa.smsbox.Search_page">

<include
    android:id="@+id/app_bar"
    layout="@layout/app_bar" />

    <EditText
        android:id="@+id/search_bar_text"
        android:layout_width="fill_parent"
        android:layout_height="50dp"
        android:background="@color/primaryColor"
        android:gravity="right|center_vertical"
        android:hint="@string/search_page_hing"
        android:maxLength="25"
        android:maxLines="1"
        android:singleLine="true"
        android:textColor="@color/search_hint"
        android:textColorHint="@color/hint_foreground_material_dark"
        android:textSize="20sp"
        android:windowSoftInputMode="stateAlwaysHidden" />

Appbar代码:

<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/primaryColor"
app:popupTheme="@style/ThemeOverlay.AppCompat.Dark"
app:theme="@style/MyCustomToolbarTheme"
android:paddingTop="15dp"
>

如何修复它或更改布局背景的顶部?

1 个答案:

答案 0 :(得分:1)

更新您的布局,如:

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
    ..
    </RelativeLayout>

还要确保您的项目使用样式

  

Theme.AppCompat.Light.NoActionBar

告诉我它是否适合你!