我想在片段的左下角显示一个按钮,但我不知道片段主布局的 ID,因为我在一个没有布局的抽象类中。
@EFragment(R.layout.exercise_test)
public class Exercise1 extends Exercice
public abstract class Exercice extends Fragment{
public void showValidateButton()
{
Button validateButton = new Button(this.getActivity().getBaseContext());
validateButton.setText("OK");
// Here I want to add the button to Exercise1
}
}
有没有办法做到这一点?
谢谢
蒂埃里。