I am trying to add TextViews to my xml-defined layout in code. I have a xml-sheet, where a lot of Views are defined. But I have to add some views in code, so a create a LinearLayout in the xml-sheet:

<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>

And in this layout, I like to add my 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);

But I only get the following error message:

: java.lang.ClassCastException: android.widget.TextView

How can I do it?

Thanks for you help. Martin

link|improve this question
Which line is that exception for? It must be from the LinearLayout cast, are you sure the linearLayout variable is a LinearLayout and not a TextView? Also you shouldn't be specifying the Id since you can't guarantee it will be unique. – Robby Pond Jul 8 '10 at 15:06
1  
You are right, linearLayout is a TextView, but why? I have defined it in the xml-file as a LinearLayout ... – Martin Jul 8 '10 at 15:14
Make sure you are really operating on the xml shown above. Is setContentView(R.layout.your_xml_layout); really loading the right xml? Do you have other xml layouts where you use android:id="@+id/info" which happen to be a TextView? – Rodja Dec 1 '11 at 10:47
feedback

4 Answers

try using

LinearLayout linearLayout = (LinearLayout)findViewById(R.id.info)

...

linearLayout.addView(valueTV);

also make sure that the layout params you're creating are LinearLayout.LayoutParams...

link|improve this answer
there is again an exception, because findViewById returns an TextView. But why? I fetch it with the LinearLayout id.... what do you mean with: also make sure that the layout params you're creating are LinearLayout.LayoutParams... ??? – Martin Jul 8 '10 at 15:59
feedback

Hey i have checked your code, there is no serious error in your code. this is complete code:

main.xml:-

<?xml version="1.0" encoding="utf-8"?>
<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>

this is stackoverflow.java

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.ViewGroup.LayoutParams;
import android.widget.LinearLayout;
import android.widget.TextView;

public class stackoverflow extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        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);
    }
}

copy this code, and run it. it is completely error free. take care...

link|improve this answer
feedback

You can add a textview to your linear layout programmatically like this.

LinearLayout linearLayout = (LinearLayout) findViewById(R.id.mylayout)
TextView txt1 = new TextView(MyClass.this);
linearLayout.setBackgroundColor(Color.TRANSPARENT);
linearLayout.addView(txt1);
link|improve this answer
feedback

You need to access the layout via it's layout resource, not an id resource which is not guaranteed unique. The resource reference should look like R.layout.my_cool_layout where your above XML layout is stored in res/layout/my_cool_layout.xml.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.