final LinearLayout toastLayout = (LinearLayout) toast.getView();
final TextView toastTV = (TextView) toastLayout.getChildAt(0);
toastTV.setTypeface(Typeface.createFromAsset(getAssetManager(), "NanumGothic.otf"));
if(singleLine) {
toastTV.setSingleLine(true);
toastTV.setEllipsize(TextUtils.TruncateAt.END);
}
toast.show();
No comments:
Post a Comment