如何在 Android 中向 LinearLayout 添加 TextView
在 Android 编程中,偶尔需要向预定义的 XML 布局添加视图动态地在您的代码中。这可以通过遵循系统方法来实现。
假设您有一个带有 ID 为“info”的 LinearLayout 的 XML 布局:
<code class="xml"><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:id="@+id/info" android:layout_height="wrap_content" android:orientation="vertical" > </LinearLayout></code>
将 TextView 添加到此 LinearLayout代码:
从 XML 布局中获取 LinearLayout 视图:
<code class="java">View linearLayout = findViewById(R.id.info);</code>
创建一个 TextView以编程方式:
<code class="java">TextView valueTV = new TextView(this);</code>
配置 TextView:
<code class="java">valueTV.setText("hallo hallo"); valueTV.setId(5);</code>
设置TextView 布局参数:
<code class="java">valueTV.setLayoutParams(new LayoutParams( LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));</code>
将 TextView 添加到 LinearLayout:
<code class="java">((LinearLayout) linearLayout).addView(valueTV);</code>
注意: 在添加 valueTV TextView 之前,请确保使用 LinearLayout.LayoutParams 作为 TextView 的布局参数,并将 LinearLayout 视图转换为 LinearLayout。
以上是如何在 Android 中以编程方式将 TextView 添加到 LinearLayout?的详细内容。更多信息请关注PHP中文网其他相关文章!