Я пытаюсь динамически добавлять представления в linearlayout. Я вижу через getChildCount(), что представления добавляются к макету, но даже вызов invalidate() в макете не дает мне показаний.
Я что-то пропустил?
Я пытаюсь динамически добавлять представления в linearlayout. Я вижу через getChildCount(), что представления добавляются к макету, но даже вызов invalidate() в макете не дает мне показаний.
Я что-то пропустил?
Несколько вещей, которые вы можете проверить в своем коде:
Этот автономный пример добавляет TextView после короткой задержки при запуске:
import java.util.Timer;
import java.util.TimerTask;
import android.app.Activity;
import android.os.Bundle;
import android.view.ViewGroup;
import android.widget.LinearLayout;
import android.widget.TextView;
public class ProgrammticView extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
final LinearLayout layout = new LinearLayout(this);
layout.setLayoutParams(new ViewGroup.LayoutParams(
ViewGroup.LayoutParams.FILL_PARENT,
ViewGroup.LayoutParams.FILL_PARENT));
setContentView(layout);
// This is just going to programatically add a view after a short delay.
Timer timing = new Timer();
timing.schedule(new TimerTask() {
@Override
public void run() {
final TextView child = new TextView(ProgrammticView.this);
child.setText("Hello World!");
child.setLayoutParams(new ViewGroup.LayoutParams(
ViewGroup.LayoutParams.FILL_PARENT,
ViewGroup.LayoutParams.WRAP_CONTENT));
// When adding another view, make sure you do it on the UI
// thread.
layout.post(new Runnable() {
public void run() {
layout.addView(child);
}
});
}
}, 5000);
}
}
У меня была такая же проблема, и я заметил, что мой метод overriden onMeasure() не был вызван после invalidate. Поэтому я создал свою собственную подпрограмму в LinearLayout и вызвал ее до метода invalidate().
Вот код для вертикального LinearLayout:
private void measure() {
if (this.getOrientation() == LinearLayout.VERTICAL) {
int h = 0;
int w = 0;
this.measureChildren(0, 0);
for (int i = 0; i < this.getChildCount(); i++) {
View v = this.getChildAt(i);
h += v.getMeasuredHeight();
w = (w < v.getMeasuredWidth()) ? v.getMeasuredWidth() : w;
}
height = (h < height) ? height : h;
width = (w < width) ? width : w;
}
this.setMeasuredDimension(width, height);
}
Я потратил много времени на решение этой проблемы. И я нашел простой способ обновления LinearLayout в 3 строках кода
Вы должны установить цвет трансверса в style.xml
<color name="transparent">#00000000</color>
И в коде просто звоните, чтобы установить фон
LinearLayout ll = (LinearLayout) findViewById(R.id.noteList);
ll.setBackgroundColor(getResources().getColor(R.color.transparent));
ll.invalidate();
Если у вас есть обратный фоновый вызов
ll.setBackgroundResource(R.drawable.your_drawable);