當前位置: 首頁>>代碼示例>>Java>>正文


Java TextView.setMaxEms方法代碼示例

本文整理匯總了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;
    }
 
開發者ID:fengdongfei,項目名稱:CXJPadProject,代碼行數:21,代碼來源:DishesView.java

示例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);
}
 
開發者ID:JunGeges,項目名稱:AliZhiBoHao,代碼行數:17,代碼來源:LiveCameraActivity.java

示例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);
}
 
開發者ID:liuguoquan727,項目名稱:android-study,代碼行數:11,代碼來源:CommonUtils.java


注:本文中的android.widget.TextView.setMaxEms方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。