Question

My code for adding a view is :

LL = (LinearLayout) findViewById(R.id.LL);
LL.removeAllViewsInLayout(); //Works fine, is necessary for a separate reason
tx = new TextView(this);
tx.setLayoutParams(new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT));
LL.addView(tx); //Program fails

The program stops at the addView function.

Était-ce utile?

La solution

I found my mistake. I was calling the the above function(of MainActivity) through an AsyncTask class(by a listener) and rather than calling in OnPostExecute I was calling at end of doInBackground.

Autres conseils

"tx" is not an array, so you can't access tx[i]. You want LL.addView(tx);

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top