在代码中将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'.
TextView tv = new TextView(this); RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT); layoutParams.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM); tv.setLayoutParams( layoutParams ); tv.setText(getString(R.string.loading)); tv.setGravity(Gravity.CENTER_HORIZONTAL); 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