第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

當(dāng)它獲得焦點(diǎn)時(shí)選擇 EditText 中的所有文本而不滾動(dòng)到末尾

當(dāng)它獲得焦點(diǎn)時(shí)選擇 EditText 中的所有文本而不滾動(dòng)到末尾

我有一個(gè)帶有一些預(yù)裝文本的 EditText。創(chuàng)建EditText時(shí),我想選擇所有文本和文本開(kāi)頭的定位。但selectAll()總是轉(zhuǎn)移scrollPosition到最后。EditText edt; edt.requestFocus(); edt.selectAll(); edt.scrollTo(0,0); //not scrolling
查看完整描述

1 回答

?
牧羊人nacy

TA貢獻(xiàn)1862條經(jīng)驗(yàn) 獲得超7個(gè)贊

參考這個(gè)例子:


activity_main.xml


<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:app="http://schemas.android.com/apk/res-auto"

    xmlns:tools="http://schemas.android.com/tools"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:orientation="vertical"

    tools:context=".MainActivity">



    <EditText

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:gravity="top"

        android:hint="Enter name"

        android:inputType="textCapSentences|textNoSuggestions|textMultiLine" />


    <EditText

        android:id="@+id/etEmail"

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:gravity="top"

        android:hint="Description"

        android:inputType="textCapSentences|textNoSuggestions|textMultiLine"

        android:maxLines="6"

        android:minLines="3" />



    <Button

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:onClick="Clickhandle"

        android:text="Click" />

</LinearLayout>

MainActivity.java


public class MainActivity extends AppCompatActivity {

    EditText editText;

    @Override

    protected void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        setContentView(R.layout.activity_main);

        editText=findViewById(R.id.etEmail);

       // editText.setSelectAllOnFocus(true); --> Select all text inside EditText when it gets focus

    }


    public void Clickhandle(View view) {

        editText.requestFocus();

        editText.selectAll();

        editText.post(new Runnable() {

            public void run() {

                editText.scrollTo(0, 0);

            }

        });

    }

}


查看完整回答
反對(duì) 回復(fù) 2023-05-17
  • 1 回答
  • 0 關(guān)注
  • 164 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)