|
楼主 |
发表于 2021-10-27 10:38:23
|
显示全部楼层
@Override
public void onClick(View v) {
switch(v.getId()){
case R.id.button1:
intent.setAction("com.android.intent.action.NAVBAR_SHOW");
intent.putExtra("cmd","hide");
this.sendBroadcast(intent);
//this.sendOrderedBroadcast(intent,null);
break;
case R.id.Button01:
intent.setAction("com.android.intent.action.NAVBAR_SHOW");
intent.putExtra("cmd","show");
//this.sendBroadcast(intent);
//this.sendOrderedBroadcast(intent,null);
break; |
|