Turn the UI of `CreateIdentityActivity` into XML
Closes #395 (closed)
Merge request reports
Activity
Filter activity
107 createIdentityButton.setLayoutParams(WRAP_WRAP); 108 createIdentityButton.setText(R.string.create_identity_button); 109 createIdentityButton.setEnabled(false); 110 createIdentityButton.setOnClickListener(this); 111 layout.addView(createIdentityButton); 112 113 progress = new ProgressBar(this); 114 progress.setLayoutParams(WRAP_WRAP); 115 progress.setIndeterminate(true); 116 progress.setVisibility(GONE); 117 layout.addView(progress); 118 119 setContentView(layout); 89 90 createIdentityButton = (Button) findViewById(R.id.createIdentityButton); 91 if (createIdentityButton != null) mentioned in commit 886c8feb
Milestone changed to %Milestone D
Please register or sign in to reply