当前位置: 首页 > 工具软件 > IPMsg4Android > 使用案例 >

android hint字体间距,Android之hint提示字体大小修改,显示完全

慕容昊焜
2023-12-01

Android之hint提示字体大小修改,显示完全

1.工作中遇到一个问题,就是自定义EditText的hint提示在超大字体下会显示不全,

2.然后在网上搜索了一下,在这里记录一下,分享给大家,在此感谢写这的大神

3.传入的hint是SpannedString或者Spanned类型,就可以保持文本的自定义属性了

import android.text.SpannableString;

import android.text.Spanned;

import android.text.SpannedString;

import android.text.style.AbsoluteSizeSpan;

import android.app.Activity;

import android.widget.EditText;

import android.widget.TextView;

android:id="@+id/recipients_editor"

android:hint="@string/to_hint_ipmsg"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:gravity="center_vertical"

android:inputType="textFilter"

android:textColorHint="@color/conv_item_date_subjectr_text"

android:paddingStart="16dip"

android:layout_weight="1"

android:textColor="#000000"

/>

原文:http://www.cnblogs.com/cxqd/p/5852870.html

 类似资料: