Estoy tratando de agregar TextViews
a mi diseño definido en xml en el código. Tengo una hoja xml, donde Views
se definen muchos . Pero tengo que agregar algunas vistas en el código, así que crea una LinearLayout
en la hoja 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>
Y en este diseño, me gusta agregar mi TextView
:
View linearLayout = findViewById(R.id.info);
//LinearLayout layout = (LinearLayout) findViewById(R.id.info);
TextView valueTV = new TextView(this);
valueTV.setText("hallo hallo");
valueTV.setId(5);
valueTV.setLayoutParams(new LayoutParams(
LayoutParams.FILL_PARENT,
LayoutParams.WRAP_CONTENT));
((LinearLayout) linearLayout).addView(valueTV);
Pero solo recibo el siguiente mensaje de error:
: java.lang.ClassCastException: android.widget.TextView
¿Cómo puedo hacerlo?
Gracias por tu ayuda. Martín
setContentView(R.layout.your_xml_layout);
Realmente está cargando el xml correcto? ¿Tiene otros diseños xml donde utiliza android:id="@+id/info"
que resultan ser TextView?