在代码中将widget/TextView动态添加到RelativeLayout

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在代码中将widget/TextView动态添加到RelativeLayout相关的知识,希望对你有一定的参考价值。

This example adds a horizontally-centered TextView to the bottom of the RelativeLayout called 'layout'.
  1. TextView tv = new TextView(this);
  2. RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);
  3. layoutParams.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM);
  4. tv.setLayoutParams( layoutParams );
  5. tv.setText(getString(R.string.loading));
  6. tv.setGravity(Gravity.CENTER_HORIZONTAL);
  7. layout.addView(tv);

以上是关于在代码中将widget/TextView动态添加到RelativeLayout的主要内容,如果未能解决你的问题,请参考以下文章

android.widget.LinearLayout 无法转换为 android.widget.TextView

android.widget.TextView.setTextAlignment():java.lang.NoSuchMethodError

Android.widget,textView 不能转换为 android.widget,button

在 JavaFX 中将元素动态添加到固定大小的 GridPane

如何在反应中将多个值添加到动态表中?

如何在立即执行中将表名添加到动态查询中?