当我单击LayoutParams TextView时如何显示Toast

时间:2018-10-26 20:07:15

标签: java textview android-layoutparams android

这是单个TextView,其中包含来自数据库的值。所以我想当我点击TextView,时,应该在我点击的位置向Toast显示相同的文本。

The image showing the text view

1 个答案:

答案 0 :(得分:0)

这是TextView代码,用于显示来自Firebase的数据。

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);