gpt4 book ai didi

android - 如何以必须显示文本结尾的方式在 edittext 中设置长文本?

转载 作者:行者123 更新时间:2023-11-30 00:57:04 25 4
gpt4 key购买 nike

我正在为自己创建一个浏览器。所以当我通过传递某个链接的 url 设置 edittext 的文本时,它只显示 url 的开头。Ex- 如果 url 是

https://stackoverflow.com/howtocreateabutton/

但编辑文本只显示

https://stackoverflow.com/how

因为屏幕溢出但我想显示链接的最后一个 -

com/howtocreateabutton/

Edittext 的 Xml 代码:

    <EditText
android:layout_width="0dp"
android:layout_height="40dp"
android:layout_weight="10"
android:onClick="enterAgain"
android:layout_marginTop="10dp"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:inputType="textUri"
android:gravity="center_vertical"
android:hint="Enter URL..."
android:autoText="true"
android:layout_marginRight="10dp"
android:textColorHighlight="#4384d4"
android:textColor="#c1bfbf"
android:maxLines="1"
android:scrollHorizontally="true"
android:foregroundGravity="right"
android:clickable="true"
android:imeOptions="actionGo"
android:id="@+id/edit_url"
android:background="#FFFFFF"/>

....帮帮我...;(

最佳答案

您可以按照以下方式进行:

et.setSelection(et.getText().length());

我测试过,如果有任何问题,它对我有用,请在评论中告诉我

关于android - 如何以必须显示文本结尾的方式在 edittext 中设置长文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39955920/

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