Это код TextView
, показывающий данные, поступающие с базы огня.
textView = new TextView(Chat.this);
textView.setText(message);
final Typeface typeface = Typeface.createFromAsset(getAssets(), "fonts/fnt1.otf");
textView.setTypeface(typeface);
LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
lp.setMargins(0, 0, 0, 20);
textView.setLayoutParams(lp);