条件式を変更

This commit is contained in:
ろむねこ 2024-01-17 19:55:30 +09:00
parent 23be550762
commit 39ebdf0259
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168

View File

@ -86,15 +86,17 @@ public class MainActivity extends AppCompatActivity {
String contents = result.getContents(); String contents = result.getContents();
if (contents == null) { if (contents == null) {
Toast.makeText(this, "QRコードが読み取れませんでした", Toast.LENGTH_LONG).show(); Toast.makeText(this, "QRコードが読み取れませんでした", Toast.LENGTH_LONG).show();
} else if (!contents.contains("https://practicefirestore1-8808c.web.app/")) {
Toast.makeText(this, "Chiled Guardに対応するQRコードではありません", Toast.LENGTH_LONG).show();
} else { } else {
//URLの表示 if (!contents.contains("https://practicefirestore1-8808c.web.app/")) {
Toast.makeText(this, contents, Toast.LENGTH_SHORT).show(); Toast.makeText(this, "Chiled Guardに対応するQRコードではありません", Toast.LENGTH_LONG).show();
//ブラウザを起動しURL先のサイトを開く } else {
CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder(); //URLの表示
CustomTabsIntent customTabsIntent = builder.build(); Toast.makeText(this, contents, Toast.LENGTH_SHORT).show();
customTabsIntent.launchUrl(this, Uri.parse(contents)); //ブラウザを起動しURL先のサイトを開く
CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
CustomTabsIntent customTabsIntent = builder.build();
customTabsIntent.launchUrl(this, Uri.parse(contents));
}
} }
} }
); );