本文整理匯總了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);
}