diff --git a/res/layout/profile_create_activity.xml b/res/layout/profile_create_activity.xml index 90800b5271..0f8865c658 100644 --- a/res/layout/profile_create_activity.xml +++ b/res/layout/profile_create_activity.xml @@ -55,7 +55,7 @@ { + skipButton.setOnClickListener(view -> { if (nextIntent != null) startActivity(nextIntent); finish(); }); + + informationLabel.setOnClickListener(view -> { + Intent intent = new Intent(Intent.ACTION_VIEW); + intent.setData(Uri.parse("https://support.signal.org/hc/en-us/articles/115001434171")); + + if (getPackageManager().queryIntentActivities(intent, 0).size() > 0) { + startActivity(intent); + } + }); } private void initializeProfileName(boolean excludeSystem) {