gpt4 book ai didi

android - 如何删除 EditText 可绘制填充?

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:23:12 25 4
gpt4 key购买 nike

我浪费了最后一个小时试图弄清楚如何在一个简单的 EditText 中去掉这个填充: enter image description here

我想要的只是将输入与其余内容对齐,就像美丽的 design guide说。

布局再简单不过了:

<ScrollView 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"
tools:context="com.actinarium.tiomantas.SetupChallengeFragment">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="16dp"
android:orientation="vertical">

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/new_challenge_name"/>

<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"

android:hint="@string/new_challenge_name_hint1"
android:singleLine="false"/>

</LinearLayout>

</ScrollView>

我尝试将 EditText 上的填充设置为 0dp——文本移动了但线条保持原样。奇怪的是,我找不到关于这个问题的任何信息,就好像没有人注意到一样。

最佳答案

我认为该行是 EditText 的背景图像,因此更改填充不会影响它。如果需要,您可以创建一个没有填充的自定义背景可绘制对象。

您可以做的另一个技巧是向 EditText 添加负边距:

        <EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="-4dp"
android:hint="@string/new_challenge_name_hint1"
android:singleLine="false"/>

关于android - 如何删除 EditText 可绘制填充?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29312210/

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