Androidで特定のURLを開くためにブラウザにインテントを送信しますか?
この例は、Androidで特定のURLを開くためにブラウザにインテントを送信する方法を示しています。
ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。
ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="https://schemas.android.com/apk/res/android" xmlns:tools="https://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:padding="8dp" tools:context=".MainActivity"> <Button android:onClick="GetUrlFromIntent" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Get URL from Intent" android:layout_centerInParent="true"/> </RelativeLayout>
ステップ3 −次のコードをsrc / MainActivity.java
に追加しますimport androidx.appcompat.app.AppCompatActivity; import android.content.Intent; import android.net.Uri; import android.os.Bundle; import android.view.View; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } public void GetUrlFromIntent(View view) { String url = "https://www.google.com"; Intent i = new Intent(Intent.ACTION_VIEW); i.setData(Uri.parse(url)); startActivity(i); } }
ステップ4 −次のコードをandroidManifest.xmlに追加します
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="https://schemas.android.com/apk/res/android" package="app.com.sample"> <uses-permission android:name="android.permission.INTERNET"/> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
-
すべてのAndroidアプリのChromeですべてのリンクを直接開く方法
すべてのAndroidユーザーはWebViewブラウザに遭遇しました。彼らはそれが何であるかを知らないかもしれませんが、彼らは確かにそれと相互作用しました。 WebViewブラウザは、Facebook、Twitter、その他のサードパーティ製アプリなどのアプリで使用される、少し基本的なアプリ内ブラウザです。 Facebookからリンクを開くと、ここでリンクが開きます。Chromeではなく、アプリ内の少し人里離れたブラウザで表示されます。 このブラウザは通常、必要最低限のものであり、制限があり、低速であり、サイト、Cookie、履歴、ブックマークなどのログインの詳細は含まれていません。アプ
-
Androidで「URLを開くためのアプリが見つかりません」エラーを修正するにはどうすればよいですか?
Androidは、Googleによって開発および配布された最も人気のあるモバイルオペレーティングシステムの1つです。これは、Linuxカーネルとその他のオープンソースソフトウェアに基づいています。このソフトウェアは2007年に最初に発表され、最新の安定バージョンは2018年にリリースされたAndroid Pie(Android 9)です。Androidのユーザーベースは20億人を超えています。 ごく最近、「URLを開くためのアプリが見つかりません」という報告が多数あります。 」Androidスマートフォンでのエラー。このエラーでは、ユーザーはURLを開くことができません。この記事では、この