简体   繁体   中英

LinearLayout - adding a TableLayout after a TextView

I'm having a problem with LinearLayout where I want to display a TableLayout after a TextView. I've tried modifying the LayoutParams however I can't seem to make it wrap (which I'm assuming I want it to do).

This is simplified version:

ScrollView sv = (ScrollView) findViewById(R.id.sv);
sv.removeAllViews();

LinearLayout ll = new LinearLayout(this);
sv.addView(ll);

//This is displayed
TextView tv = new TextView(this);
tv.setText("Hello World");
ll.addView(tv);

//This is not displayed - but if I remove the above view it will display...
TableLayout tl = new TableLayout(this);
ll.addView(tl, new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT));

By specifiying Orientation as Vertical it worked for me:

ScrollView sv = (ScrollView) findViewById(R.id.sv);
sv.removeAllViews();

LinearLayout ll = new LinearLayout(this);
ll.setOrientation(LinearLayout.VERTICAL);
sv.addView(ll);

TextView tv = new TextView(this);
tv.setText("Hello World");
ll.addView(tv);

TableLayout tl = new TableLayout(this);
ll.addView(tl);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM