我正在尝试将 a 添加textView
到frameLayout
. TextView
具有wrap_content
属性,因此它会随着文本的增长而增长。我FrameLayout
用这个函数将它添加到一个:
((FrameLayout) findViewById(R.id.mainLayout)).addView(mEditText);
这是框架布局的 xml:
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mainLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</FrameLayout>
textView 总是出现在屏幕的左上角。我想把它放在中间,或者顶部中间。如何才能做到这一点?
我查看了如何在 Android 中动态设置视图位置?他们并没有太大帮助:(主要导致崩溃..