Meine Frage ist einfach,
Wie kann ich meine Schaltflächen layout_gravity programmatisch einstellen?
Ich fand dies im Internet, aber es wirft mich einfach eine Nullpointer-Ausnahme:
Button MyButton = new Button(this);
LinearLayout.LayoutParams lllp=(LinearLayout.LayoutParams)MyButton.getLayoutParams();
lllp.gravity=Gravity.RIGHT;
MyButton.setLayoutParams(lllp);
MyLinearLayout.addView(MyButton);
Gibt es eine Lösung?