(Bundle savedInstanceState)
| 43 | private Group grpReady; |
| 44 | |
| 45 | @Override |
| 46 | protected void onCreate(Bundle savedInstanceState) { |
| 47 | super.onCreate(savedInstanceState); |
| 48 | |
| 49 | View view = LayoutInflater.from(this).inflate(R.layout.activity_dsn, null); |
| 50 | setContentView(view); |
| 51 | |
| 52 | getSupportActionBar().setDisplayHomeAsUpEnabled(true); |
| 53 | getSupportActionBar().setSubtitle("DSN"); |
| 54 | |
| 55 | tvHeaders = findViewById(R.id.tvHeaders); |
| 56 | pbWait = findViewById(R.id.pbWait); |
| 57 | grpReady = findViewById(R.id.grpReady); |
| 58 | |
| 59 | // Initialize |
| 60 | grpReady.setVisibility(View.GONE); |
| 61 | |
| 62 | load(); |
| 63 | } |
| 64 | |
| 65 | @Override |
| 66 | protected void onNewIntent(Intent intent) { |
nothing calls this directly
no test coverage detected