這篇文章將為大家詳細(xì)講解有關(guān)在Android項(xiàng)目中利用EditText將光標(biāo)居右顯示,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
創(chuàng)新互聯(lián)建站專業(yè)為企業(yè)提供平利網(wǎng)站建設(shè)、平利做網(wǎng)站、平利網(wǎng)站設(shè)計(jì)、平利網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)與制作、平利企業(yè)網(wǎng)站模板建站服務(wù),10多年平利做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。
Android 開發(fā)實(shí)現(xiàn)EditText 光標(biāo)居右顯示
前言:
有些時(shí)候肯定會(huì)遇到這種奇葩的需求,光標(biāo)要靠右顯示,因?yàn)锳ndroid里面光標(biāo)默認(rèn)是靠左顯示的,那怎么實(shí)現(xiàn)呢,肯定有辦法的,這里提供一種實(shí)現(xiàn)方式,看布局
<FrameLayout android:layout_width="match_parent" android:layout_height="wrap_content"> <TextView android:id="@+id/tv" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_marginRight="6dp" android:background="@null" android:gravity="right|center_vertical" android:text="請(qǐng)輸入您想輸入的" /> <EditText android:id="@+id/et" android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="right|center_vertical" /> </FrameLayout>
看布局你就明白是什么意思 了吧,代碼里面監(jiān)聽EditText輸入,讓TextView顯示隱藏就行了。
et.addTextChangedListener(new TextWatcher() { @Override public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) { } @Override public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) { if (TextUtils.isEmpty(charSequence)) { tv.setVisibility(View.VISIBLE); } else { tv.setVisibility(View.GONE); } } @Override public void afterTextChanged(Editable editable) { } });
關(guān)于在Android項(xiàng)目中利用EditText將光標(biāo)居右顯示就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
分享名稱:在Android項(xiàng)目中利用EditText將光標(biāo)居右顯示
網(wǎng)頁鏈接:http://chinadenli.net/article46/ihjshg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站收錄、ChatGPT、網(wǎng)站導(dǎo)航、營(yíng)銷型網(wǎng)站建設(shè)、品牌網(wǎng)站制作、網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)