(View v)
| 76 | Button btnFix = findViewById(R.id.btnFix); |
| 77 | btnFix.setOnClickListener(new View.OnClickListener() { |
| 78 | @Override |
| 79 | public void onClick(View v) { |
| 80 | Intent intent = new Intent(Settings.ACTION_INTERNAL_STORAGE_SETTINGS); |
| 81 | v.getContext().startActivity(intent); |
| 82 | } |
| 83 | }); |
| 84 | |
| 85 | Button btnContinue = findViewById(R.id.btnContinue); |
nothing calls this directly
no test coverage detected