我通过简单地调用onBackPressed()
在android中完成了同样的操作。
我一直在尝试使用c#在Unity中执行相同的操作。像Input这样的类可以处理输入,但无法访问android的后退按钮。
我也看到过触摸模拟器和其他功能,但我正在寻找一些简单的方法,例如调用this.onBackPressed()
。
请注意,我不是要捕获后退按钮,而是想从代码中按下后退按钮。
答案 0 :(得分:1)
我一直在使用它。
#container{
/*opacity: 0.5;*/ //remove this line
margin: 0 auto;
padding: 0 auto;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
width: 380px;
height: 480px;
/*background: #000;*/ //remove this line
border: 4px solid #ffbd04;
border-radius: 20px;
background:(0,0,0,0.5); //newly added line
}