Вот что я сделал, чтобы настроить представление содержимого:
Код: Выделить всё
//Template generated "MainActivity" class extended from "GameActivity" class
static {
System.loadLibrary("Native");
}
@Override
public void onCreate(Bundle bundle) {
super.onCreate(bundle);
setContentView(R.layout.layout); //I added this line, set the window to xml layout
}
Я пытался использовать setVisibility()
Я пытался использовать setVisibility()
code> в View.GONE, как сказано в официальной документации.
Код: Выделить всё
//inside OnCreated() method
setContentView(R.layout.layout);
//I didn't wait for button clicked event because this is just testing
View contentView = findViewById(R.id.mainview);//Top level Layout in xml
contentView.setVisibility(View.GONE);
Подробнее здесь: https://stackoverflow.com/questions/790 ... ut-in-andr