首頁 收藏 QQ群
 網(wǎng)站導(dǎo)航

ZNDS智能電視網(wǎng) 推薦當(dāng)貝市場

TV應(yīng)用下載 / 資源分享區(qū)

軟件下載 | 游戲 | 討論 | 電視計算器

綜合交流 / 評測 / 活動區(qū)

交流區(qū) | 測硬件 | 網(wǎng)站活動 | Z幣中心

新手入門 / 進(jìn)階 / 社區(qū)互助

新手 | 你問我答 | 免費刷機(jī)救磚 | ROM固件

查看: 9795|回復(fù): 0
上一主題 下一主題
[教程]

EditText的一些使用注意點

[復(fù)制鏈接]
跳轉(zhuǎn)到指定樓層
樓主
發(fā)表于 2013-8-28 16:28 | 只看該作者 回帖獎勵 |倒序瀏覽 |閱讀模式
31.如何對EditText進(jìn)行setText()的時候使其自動換行   
   
Java代碼   
<EditText android:layout_width="200dp" android:layout_height="wrap_content"     
        android:id="@+id/input" android:singleLine="false"      
         />     
   
  我們只要確保singleLine為false的話,并且設(shè)置寬度一定,就可以自動換行,注意在這里不要設(shè)置   
Java代碼   
input.setInputType(0);     
   
不然就不會自動換行   
   
2.在TableLayout中布局一行,設(shè)置EditText的xml屬性:   
Java代碼   
< !-- android:shrinkColumns="1" shrinks the 2nd column to fit the window -->     
< !-- android:stretchColumns="1" stretches the 2nd column -->     
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"     
    android:layout_width="fill_parent" android:layout_height="fill_parent"     
    android:orientation="vertical" android:paddingLeft="5dp"     
    android:paddingRight="5dp" android:stretchColumns="1">     
     
     
    <TableRow android:layout_width="fill_parent"     
        android:layout_height="wrap_content" android:orientation="horizontal">     
        <TextView android:layout_width="wrap_content"     
            android:layout_height="wrap_content" android:text="Email"     
            android:paddingRight="5dp">     
        </TextView>     
        <EditText android:id="@+id/txtEmail" android:layout_width="200dp"     
            android:layout_height="wrap_content" android:textSize="18sp"     
            android:singleLine="false" android:inputType="textEmailAddress">     
        </EditText>     
    </TableRow>     
     
     
< /TableLayout>      
   
   
3.如何設(shè)置EditText隱藏鍵盤   
   
Java代碼   
(EditText)mMarket.setInputType(0);     
   
   
4.如何設(shè)置EditText不被輸入法遮蓋   
Java代碼   
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);   

上一篇:Android開發(fā)指南1-框架主題-基礎(chǔ)知識
下一篇:介紹AsyncTask的用法用法
您需要登錄后才可以回帖 登錄 | 立即注冊

本版積分規(guī)則

Archiver|新帖|標(biāo)簽|軟件|Sitemap|ZNDS智能電視網(wǎng) ( 蘇ICP備2023012627號 )

網(wǎng)絡(luò)信息服務(wù)信用承諾書 | 增值電信業(yè)務(wù)經(jīng)營許可證:蘇B2-20221768 丨 蘇公網(wǎng)安備 32011402011373號

GMT+8, 2024-11-10 05:37 , Processed in 0.055911 second(s), 17 queries , Redis On.

Powered by Discuz!

監(jiān)督舉報:report#znds.com (請將#替換為@)

© 2007-2024 ZNDS.Com

快速回復(fù) 返回頂部 返回列表