인텐트 유형에 대해 알아보기 전에 인텐트가 무엇인지 알아야 합니다. 의도는 작업을 수행하는 것입니다. 주로 활동 시작, 브로드캐스트 수신기 보내기, 서비스 시작 및 두 활동 간에 메시지를 보내는 데 사용됩니다. Android에는 암시적 의도와 명시적 의도의 두 가지 의도가 있습니다.
명시적 의도 − 활동 시작과 같은 애플리케이션의 내부 세계를 연결하거나 두 활동 간에 데이터를 전송합니다. 새 활동을 시작하려면 Intent 개체를 만들고 아래와 같이 소스 활동과 대상 활동을 전달해야 합니다. -
Intent send = new Intent(MainActivity.this, SecondActivity.class); startActivity(send);
그리고 Manifest.xml 파일에서 두 번째 활동에 대해 선언해야 합니다. 그렇지 않으면 런타임 예외가 표시됩니다. 샘플 선언은 아래와 같습니다.
<activity android:name = ".SecondActivity"></activity>
암시적 의도 − 전화, 메일, 전화와 같은 외부 응용 프로그램과 연결하고 웹 사이트를 참조하십시오. 암시적 인텐트에서는 아래 예제와 같이 setAction()을 사용하여 작업을 전달해야 합니다.
Intent i = new Intent(); i.setAction(Intent.ACTION_VIEW); i.setData(Uri.parse("www.tutorialspoint.com")); startActivity(i);
위의 예에서 우리는 보기로 액션을 제공하고 있습니다. 그래서 그것은 우리가 setData 메소드에서 제공한 것을 보여줄 것입니다.
setData() - This method is only to specifies a URI. setType()- This method specifies a MIME type. setDataAndType()- This method i specifies both a URI and a MIME type.
이 예는 명시적 의도 사용을 통합하는 방법을 보여줍니다.
1단계 − Android Studio에서 새 프로젝트를 생성하고 파일 ⇒ 새 프로젝트로 이동하여 필요한 모든 세부 정보를 입력하여 새 프로젝트를 생성합니다.
2단계 − res/layout/activity_main.xml에 다음 코드를 추가합니다.
<?xml version = "1.0" encoding = "utf-8"?> <android.support.constraint.ConstraintLayout 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"> <LinearLayout android:layout_width = "match_parent" android:layout_height = "match_parent" android:gravity = "center" android:orientation = "vertical"> <Button android:layout_width = "wrap_content" android:layout_height = "wrap_content" android:text = "Start website" android:id = "@+id/send"/> </LinearLayout> </android.support.constraint.ConstraintLayout>
3단계 − src/MainActivity.java
에 다음 코드 추가import android.content.Intent; import android.net.Uri; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.Button; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Button send = findViewById(R.id.send); send.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent i = new Intent(); i.setAction(Intent.ACTION_VIEW); i.setData(Uri.parse("https://www.tutorialspoint.com")); startActivity(i); } }); } }
4단계 − 웹사이트를 시작하려면 인터넷 권한이 필요합니다. 아래와 같이 AndroidManifest.xml에 인터넷 권한을 추가하세요.
<?xml version = "1.0" encoding = "utf-8"?> <manifest xmlns:android = "https://schemas.android.com/apk/res/android" package = "com.example.andy.myapplication"> <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 모바일 장치를 컴퓨터에 연결했다고 가정합니다. Android 스튜디오에서 앱을 실행하려면 프로젝트의 활동 파일 중 하나를 열고 실행을 클릭하세요. 툴바에서 아이콘. 모바일 장치를 옵션으로 선택한 다음 기본 화면을 표시할 모바일 장치를 확인하십시오 -
이제 웹사이트 시작 버튼을 클릭하면 아래와 같이 tutorialspoint 웹사이트로 리디렉션됩니다.