In my Activity I have to add 10 times the same TextView.

Is it possibile to load from layout.xml the definition of textview and repeat programmatically it?

I hope that my English was understandable

link|improve this question

58% accept rate
feedback

3 Answers

up vote 0 down vote accepted
public class YourClassName extends Activity
{
    @Override 
    public void onCreate(Bundle bundle)
    {
        super.onCreate(bundle);

        // set activity layout
        setContentView(R.layout.some_activity_layout);

        LinearLayout mainActivityLayout = (LinearLayout)findViewById(R.id.main_layout);
        LayoutInflater li = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);

        // then see previous answer
        // loop n times {
            TextView yourTextView = _li.inflate(R.layout.text_view_layout, null);
            mainActivityLayout.addView(yourTextView);
        // } end loop
    }
}
link|improve this answer
thanks... I was looking a solution like this – Webman Feb 16 at 16:14
feedback
for(int i=0;i<10;i++){
      Textview text = new TextView(this);
      mainlayout.add(text);
}
link|improve this answer
It is 11 TextViews – Sergey Glotov Feb 16 at 15:24
check answer ...Because 0 to 10 is 11.Now 0 to 9(i<10).... – Samir Mangroliya Feb 16 at 15:25
feedback

You may want to read this article on reusing UI components: http://developer.android.com/resources/articles/layout-tricks-reuse.html

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.