當前位置:首頁 » 安卓系統 » android字元串的寬度

android字元串的寬度

發布時間: 2022-10-09 00:40:00

Ⅰ 在android xml 布局文件中 android:ems="10" 什麼意思,謝謝!!!

android:ems = "10" 設置TextView或者Edittext的寬度為10個字元的寬度。當設置該屬性後,控制項顯示的長度就為10個字元的長度,超出的部分將不顯示。

Ⅱ android 怎麼獲取TextView字元串的長度

如果用testSize設置漢字的大小,其值用像素表示。用 屏幕寬度的像素/漢字寬度像素就得到了所能顯示文字的長度,如果出現字母和特殊符號的時候,這樣計算字元串長度就不準確了。
可用下面辦法獲取長度:
Paint paint =
new
Paint();

paint.setTextSize(currentTextView.getTextSize());

float size =paint.measureText(currentTextView.getText().toString());

Ⅲ Android TextView寬度和高度固定,怎麼根據顯示的字元串來計算出字體的尺寸

先獲取TextView的padding的值,然後用固定高度或寬度減去padding就是文字所佔的空間。
TextView tv = new TextView(this);
int top = tv.getPaddingTop();//有bottom,left,right,
int bottom = tv.getPaddingBottom();

假設固定高度為100,
那麼自體高度所佔空間應該是 100-(top+bottom)

Ⅳ android 跑馬燈效果,如果文字不超過寬度,我也想做出跑馬燈效果,怎麼實現

今天要實現的一個效果是在Android中實現一個跑馬燈的效果:
在新建一個Android proct之後,在布局文件main中替換掉原來的TextView
代碼如下:
<TextView
android:layout_width="60dp"
android:layout_height="wrap_content"
android:textColor="@android:color/black"
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:text="這是跑馬燈的效果這是跑馬燈的效果">
</TextView>

其他部分代碼不用改動,在模擬器上應該可以看到滾動的顯示"這是跑馬燈的效果這是跑馬燈的效果"。

其中有幾個問題是我自己碰到的,列舉如下:
1.寬度android:layout_width不可以設置為wrap_content(自適應內容)
2.android:text最好是比較長的字元串,最少要長過自己設置的width大小(我這里是60dp)
3.顏色最好別設置為@android:color/white,否則你什麼都看不到,因為背景顏色也是white
4.在xml中,TextView 的屬性
android:ellipsize = "end" 省略號在結尾
android:ellipsize = "start" 省略號在開頭
android:ellipsize = "middle" 省略號在中間
android:ellipsize = "marquee" 跑馬燈
5.android:scrollHorizontally="true"相信大家英文水平還不錯的話都明白這句的意思是水平滾動
6.android:marqueeRepeatLimit="marquee_forever" 看英文同樣可以明白,是無限次循環,學習android,英文基礎還是必須的。
7.最後還有兩句代碼沒有解釋:
android:focusable="true" //讓TextView獲得焦點
android:focusableInTouchMode="true" //針對觸摸屏獲得當前焦點

事實上這兩句代碼我也了解不是特別多,在網上查了下這兩個屬性,目前理解為:
android:focusable="true"相當於當前Activity打開的時候,讓當前控制項TextView獲得焦點,才可以實現滾動功能

android:focusableInTouchMode="true"和上述屬性應該是類似的,但限制應該是指的觸摸屏上的意思

對於這兩個屬性,希望有高人指點下。

Ⅳ Android中如何獲取字元或者字元串的寬度

這里的字元或者字元串的寬度,計算的是其像素值。有以下兩種方法:方法1:
Paint paint= new Paint();
Rect rect = new Rect();
//返回包圍整個字元串的最小的一個Rect區域
paint.getTextBounds(str, 0, 1, rect);
int strwidth = rect.width();
int strheight = rect.height();方法2:
//直接返回參數字元串所佔用的寬度
float strwidth = paint.measureText(str);
對於字元而言,可以將字元轉換成字元串,然後計算。例如:
char c = 'c';
然後利用上面兩種方法即可。

Ⅵ android 如何准確測量中英文混雜字元串寬度

String str="韓寒會畫畫喊韓紅壞壞";
Paint paint=new Paint();
Rect rect=new Rect();
paint.getTextBounds(str,0,str.length,rect);
int width=rect.width();
width就是文字的長度辣

Ⅶ Android 系統搜索框 如何限制輸入字數長度

android 搜索框就是一個EditText輸入控制項,或者是EditText的子類

長度限制方式有以下幾種:

方法一:

在 xml 文件中設置文本編輯框屬性作字元數限制

如:android:maxLength="10" 即限制最大輸入字元個數為10


方法二:

在代碼中使用InputFilter 進行過濾

//editText.setFilters(new InputFilter[]{new InputFilter.LengthFilter(20)}); 即限定最大輸入字元數為20

示例代碼如下:

java">{
/**.*/
@Override
publicvoidonCreate(BundlesavedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

EditTexteditText=(EditText)findViewById(R.id.entry);
editText.setFilters(newInputFilter[]{newInputFilter.LengthFilter(20)});
}
}

方法三:

利用 TextWatcher 進行限制,TextWatcher是注冊一個內存輸入的改變事件,當你的輸入框輸入字元和刪除字元都會觸發

實現代碼如下:

packagecie.textEdit;

importandroid.text.Editable;
importandroid.text.Selection;
importandroid.text.TextWatcher;
importandroid.widget.EditText;

/*
*監聽輸入內容是否超出最大長度,並設置游標位置
**/
{

privateintmaxLen=0;
privateEditTexteditText=null;


publicMaxLengthWatcher(intmaxLen,EditTexteditText){
this.maxLen=maxLen;
this.editText=editText;
}

publicvoidafterTextChanged(Editablearg0){
//TODOAuto-generatedmethodstub

}

publicvoidbeforeTextChanged(CharSequencearg0,intarg1,intarg2,
intarg3){
//TODOAuto-generatedmethodstub

}

publicvoidonTextChanged(CharSequencearg0,intarg1,intarg2,intarg3){
//TODOAuto-generatedmethodstub
Editableeditable=editText.getText();
intlen=editable.length();

if(len>maxLen)
{
intselEndIndex=Selection.getSelectionEnd(editable);
Stringstr=editable.toString();
//截取新字元串
StringnewStr=str.substring(0,maxLen);
editText.setText(newStr);
editable=editText.getText();

//新字元串的長度
intnewLen=editable.length();
//舊游標位置超過字元串長度
if(selEndIndex>newLen)
{
selEndIndex=editable.length();
}
//設置新游標所在的位置
Selection.setSelection(editable,selEndIndex);

}
}

}

有關EditText 即Android輸入框的更多用法,建議查看官網API文檔

熱點內容
armlinux命令 發布:2025-01-23 00:01:08 瀏覽:134
戰地4亞洲伺服器為什麼被攻擊 發布:2025-01-22 23:45:42 瀏覽:668
javascript反編譯 發布:2025-01-22 23:37:57 瀏覽:429
夏天來了你的巴氏奶存儲對嗎 發布:2025-01-22 23:37:56 瀏覽:203
求最大值c語言 發布:2025-01-22 23:22:35 瀏覽:247
一鍵清理系統腳本 發布:2025-01-22 23:21:10 瀏覽:59
防疫宣傳腳本 發布:2025-01-22 23:21:05 瀏覽:632
編譯程序編譯後是什麼語言 發布:2025-01-22 23:20:08 瀏覽:368
電腦文件夾設密碼 發布:2025-01-22 23:17:21 瀏覽:7
anyconnect伺服器地址2018 發布:2025-01-22 23:05:56 瀏覽:530