gpt4 book ai didi

android - 删除 EditText 和 TextView 之间的空白

转载 作者:行者123 更新时间:2023-11-30 03:49:52 27 4
gpt4 key购买 nike

请看下面的截图。

enter image description here

我正在尝试删除 EditText 正下方的空白区域。没有设置任何边距或填充,这反过来让我感到困惑。这是布局 XML。

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

<EditText
android:id="@+id/searchText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:drawableLeft="@drawable/search_icon"
android:ems="10"
android:hint="@string/text_hint_search"
android:imeOptions="actionSearch"
android:inputType="text"
android:lines="1"
android:windowSoftInputMode="stateVisible" >


</EditText>

<TextView
android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/searchText"
android:background="@color/textGreyColor"
android:text="List of Items"
android:textAppearance="?android:attr/textAppearanceMedium" />
</RelativeLayout>

谁能告诉我我在哪里摔倒了?

编辑:(新屏幕截图)

enter image description here

@Nimish Choudhary 看看左边和右边的空隙!

最佳答案

这种行为的原因是每个 View 都有一些默认的填充,你可以试试

<EditText
android:id="@+id/searchText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:drawableLeft="@drawable/ic_launcher"
android:ems="10"
android:hint="hint"
android:imeOptions="actionSearch"
android:inputType="text"
android:lines="1"
android:windowSoftInputMode="stateVisible" >
</EditText>

<TextView
android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="-5dp"
android:layout_alignParentLeft="true"
android:layout_below="@+id/searchText"
android:background="@android:color/darker_gray"
android:text="List of Items"
android:textAppearance="?android:attr/textAppearanceMedium" />

关于android - 删除 EditText 和 TextView 之间的空白,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14323500/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com