本文整理汇总了Java中android.widget.TextView.setMaxEms方法的典型用法代码示例。如果您正苦于以下问题:Java TextView.setMaxEms方法的具体用法?Java TextView.setMaxEms怎么用?Java TextView.setMaxEms使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.widget.TextView
的用法示例。
在下文中一共展示了TextView.setMaxEms方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getcontentTextView
import android.widget.TextView; //导入方法依赖的package包/类
private View getcontentTextView() {
countText=new TextView(getContext());
countText.setSingleLine(true);
countText.setGravity(Gravity.CENTER);
countText.setMaxEms(8);
countText.setTextSize(20);
countText.setFocusable(false);
LayoutParams param=getLayoutParams((getMeasuredWidth()-20)/4,getMeasuredHeight()+80);
param.weight=3;
param.gravity= Gravity.CENTER;
countText.setLayoutParams(param);
setBackgroundDrawable(countText, editTextDrawable);
// onUpdateEditText();
onUpdatecountText();
return countText;
}
示例2: addView
import android.widget.TextView; //导入方法依赖的package包/类
public void addView(TextView childView, String text) {
if (push_state_ll.getChildCount() > 3) {
push_state_ll.removeViewAt(0);
}
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
layoutParams.setMargins(0, 0, 0, 10);
childView.setTextColor(Color.RED);
childView.setText(text);
childView.setTextSize(TypedValue.COMPLEX_UNIT_SP, 13f);
childView.setBackgroundResource(R.drawable.text_state);
childView.setLayoutParams(layoutParams);
childView.setPadding(15, 10, 15, 10);
childView.setMaxEms(20);
childView.setMaxLines(3);
push_state_ll.addView(childView);
}
示例3: updateTitleText
import android.widget.TextView; //导入方法依赖的package包/类
/**
* 把标题字体加粗、颜色白色
*
* @param titleView TextView
*/
public static void updateTitleText(TextView titleView) {
titleView.setTextColor(Color.WHITE);
titleView.getPaint().setFakeBoldText(true);
titleView.setMaxEms(10);
}