整数値を割り当てTextView
てJavaコードを使用して特定のテキストサイズを変更すると、値はピクセル(px
)として解釈されます。
誰かがそれをどのように割り当てるか知っていますsp
か?
整数値を割り当てTextView
てJavaコードを使用して特定のテキストサイズを変更すると、値はピクセル(px
)として解釈されます。
誰かがそれをどのように割り当てるか知っていますsp
か?
回答:
http://developer.android.com/reference/android/widget/TextView.html#setTextSize%28int,%20float%29
例:
textView.setTextSize(TypedValue.COMPLEX_UNIT_SP, 65);
textView.setTextSize(TypedValue.COMPLEX_UNIT_PX, getResources().getDimension(R.dimen.my_text_size_in_sp));
この方法でテキストサイズを取得すると、画面密度とテキストスケールファクターの両方を考慮して、SPがPXに変換されます。
DisplayMetrics
オブジェクトを使用すると、scaledDensity
属性を持つピクセルとスケーリングされたピクセルの間の変換に役立ちます。
DisplayMetrics dm = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(dm);
pixelSize = (int)scaledPixelSize * dm.scaledDensity;
may be adjusted in smaller increments at runtime based on a user preference for the font size
、フォントサイズが考慮されると記載されています。
のソースコードに基づくsetTextSize
:
public void setTextSize(int unit, float size) {
Context c = getContext();
Resources r;
if (c == null)
r = Resources.getSystem();
else
r = c.getResources();
setRawTextSize(TypedValue.applyDimension(
unit, size, r.getDisplayMetrics()));
}
ピクセルの寸法を計算するために、この関数を作成します。
int getPixels(int unit, float size) {
DisplayMetrics metrics = Resources.getSystem().getDisplayMetrics();
return (int)TypedValue.applyDimension(unit, size, metrics);
}
単位はのようなものですTypedValue.COMPLEX_UNIT_SP
。
デフォルトでは、単位なしのsetTextSizeがSPで機能します(ピクセルをスケーリング)
public void setTextSize (float size)
Added in API level 1
Set the default text size to the given value, interpreted as "scaled pixel" units. This
size is adjusted based on the current density and user font size preference.
@John Leeheyと@PeterHに感謝します。
desiredSp = getResources().getDimension(R.dimen.desired_sp);
density = getResources().getDisplayMetrics().density;
textView.setTextSize(TypedValue.COMPLEX_UNIT_SP, desiredSp / density);
問題は、dimen.xmlでR.dimen.desired_spを25に定義した場合です。
semeTextView.setTextSize(TypedValue.COMPLEX_UNIT_PX,
context.getResources().getDimension(R.dimen.text_size_in_dp))
COMPLEX_UNIT_PX
する場合は、密度を分割する必要があります。
APIレベル1から、このpublic void setTextSize (float size)
メソッドを使用できます。
ドキュメントから:
デフォルトのテキストサイズを、「スケーリングされたピクセル」単位として解釈される指定された値に設定します。このサイズは、現在の密度とユーザーフォントサイズの設定に基づいて調整されます。
パラメータ:size-> float:スケーリングされたピクセルサイズ。
だからあなたは簡単に行うことができます:
textView.setTextSize(12); // your size in sp