Androidに表示されている電話番号でダイヤラを開くにはどうすればよいですか?
この例は、Androidに表示されているオープン番号でダイヤラを開く方法を示しています。
ステップ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:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:layout_marginTop="40dp" android:onClick="ShowDialer" android:text="Show Number Dialer" /> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:autoLink="phone" android:linksClickable="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 ShowDialer(View view) { Intent intent = new Intent(Intent.ACTION_DIAL); intent.setData(Uri.parse("tel:0123456789")); startActivity(intent); } }
ステップ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.CALL_PHONE" /> <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エミュレータのIPアドレスを取得するにはどうすればよいですか?
この例は、AndroidエミュレータのIPアドレスを取得する方法を示しています。 ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。 ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="https://
-
任意の電話でストックAndroidエクスペリエンスを取得する方法
GoogleのPixelデバイスは、最高の純粋なAndroidスマートフォンです。ただし、root化することなく、どのスマートフォンでもそのストックAndroidエクスペリエンスを利用できます。 基本的に、標準のAndroidランチャーとバニラAndroidフレーバーを提供するいくつかのアプリをダウンロードする必要があります。それは本当にシンプルです。つまり、技術的なノウハウがなくても誰でもそれを行うことができます。何をすべきかをご案内します。 1.最高のストックAndroidランチャーを入手 Googleには独自のPixelランチャーがありますが、これはPixelスマートフォンでのみ