확장자와 어플 연결하기
AndroidManifest.xml 파일에 설정한 어플 구동시 최초로 열리는 파일에 아래와 같이
기존 <intent-filter> 를 두고 아래에 <intent-filter> 를 또 추가해줍니다. (예: gpx 파일 연결)
<intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:scheme="file" android:host="*" android:pathPattern=".*.gpx" android:mimeType="*/*" /> </intent-filter> |
그리고 메인이 되는 Activity.java 에서 onCreate 함수의 getIntent() 로 Intent 정보를 가져와 이용하면 됩니다.
public class SplashActivity extends AppCompatActivity {
} else {
}
} |
'프로그래밍 > Android (Java)' 카테고리의 다른 글
나침반 만들기 (0) | 2019.08.07 |
---|---|
어플 모두 로딩시까지 로딩화면 보여주기 (Intro Screen) (0) | 2019.08.05 |
여러가지 작업 설정 후 호출하기 (0) | 2019.07.12 |
서비스 (service) 가동 여부 확인하기 (0) | 2019.07.12 |
Notification 진동 제거하기 (0) | 2019.07.10 |