国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計 > 正文

TextView設(shè)置字體格式以及滾動顯示效果

2019-11-06 09:56:10
字體:
供稿:網(wǎng)友

一、設(shè)置字體格式

首先來看下安卓TextView的字體如何設(shè)置成其他格式:

如圖:

首先我們需要一個ttf的字體文件,我從網(wǎng)上下載了個漢儀雪君體繁字體,然后重命名(不能有中文)。

在我們項目的assets文件夾下新建個文件夾fonts將ttf文件復(fù)制粘貼進(jìn)去。

然后就可以設(shè)置我們的字體格式了,代碼很簡單:

AssetManager mgr=getAssets();//得到AssetManagerTypeface tf=Typeface.createFromAsset(mgr, "fonts/hyxjtf.ttf");//根據(jù)路徑得到Typefacetv_set.setTypeface(tf);//設(shè)置字體

3行代碼搞定。

二、設(shè)置TextView的滾動效果

如圖:

可以在布局文件中對TextView添加4行屬性

android:singleLine="true"android:ellipsize="marquee"android:focusable="true"android:focusableInTouchMode="true"

另外TextView的layout_width要比文字的總長度要短一點點,讓singleLine發(fā)揮出效果才行。

這是針對頁面中只有一個TextView的情況下才能這樣搞。

如果文中有多個TextView,你全都要設(shè)置成滾動,那么這樣搞會因為焦點問題導(dǎo)致你設(shè)置的TextView只有一個能達(dá)到效果。

所以這個時候我們就需要重寫TextView了,將isFocused方法返回改為true。

public class MyTextView extends TextView{public MyTextView(Context context) {super(context);// TODO Auto-generated constructor stub}public MyTextView(Context context, AttributeSet attrs) {        super(context, attrs);    }    public MyTextView(Context context, AttributeSet attrs, int defStyleAttr) {        super(context, attrs, defStyleAttr);    }@Overridepublic boolean isFocused() {// TODO Auto-generated method stubreturn true;}}

然后加到布局中就可以了。

<com.example.view.MyTextView        android:id="@+id/tv_scroll1"        android:layout_width="150dp"        android:layout_height="wrap_content"        android:textSize="20sp"        android:singleLine="true"        android:ellipsize="marquee"        android:focusable="true"        android:focusableInTouchMode="true"        android:text="TextView字體滾動效果1" />

<com.example.view.MyTextView        android:id="@+id/tv_scroll2"        android:layout_width="150dp"        android:layout_height="wrap_content"        android:textSize="20sp"        android:singleLine="true"        android:ellipsize="marquee"        android:focusable="true"        android:focusableInTouchMode="true"        android:text="TextView字體滾動效果2" />

項目地址:點擊下載源碼


發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 辽宁省| 盘山县| 宁陕县| 临洮县| 那曲县| 定远县| 罗江县| 长岭县| 交城县| 富平县| 丰都县| 依安县| 宁陵县| 长丰县| 息烽县| 双桥区| 舒兰市| 科技| 拉萨市| 襄樊市| 新昌县| 迭部县| 九龙城区| 林周县| 安国市| 江津市| 谢通门县| 昔阳县| 武平县| 芦山县| 兴安县| 东兴市| 满洲里市| 邵阳市| 霞浦县| 清远市| 东乌| 河源市| 侯马市| 泰州市| 凤冈县|