일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- MVP Architecture
- WebView
- Android 12
- 안드로이드
- scope function
- 영어공부
- Android Jetpack
- Java
- Android Interceptor
- 프로그래머스 알고리즘
- 영어독립365
- Android ViewPager2
- 안드로이드 카카오 로그인
- Android DataBinding
- 카카오 알고리즘
- Kotlin
- Android ProgressBar
- DataBinding
- Android Navigation
- Android 12 대응
- Android WebView
- Kotlin FCM
- 66챌린지
- OkHttp Interceptor
- 습관만들기
- Android
- android recyclerview
- 안드로이드 fcm
- 알고리즘 자바
- 안드로이드 갤러리 접근
Archives
- Today
- Total
Developer Geek
안드로이드 공유하기 예제 Kotlin 본문
반응형
실행화면
프로젝트 구조
Code - Example
activity_main.xml
공유하기 버튼 을 만든다.
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<androidx.appcompat.widget.AppCompatButton
android:id="@+id/btnShare"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#BBCCDD"
android:text="공유하기"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
MainActivity.kt
공유하기 기능을 구현한다.
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
initShareButton()
}
private fun initShareButton() {
val shareButton = findViewById<AppCompatButton>(R.id.btnShare)
shareButton.setOnClickListener {
val shareIntent = Intent().apply {
action = Intent.ACTION_SEND
putExtra(
Intent.EXTRA_TEXT,
"https://devgeek.tistory.com" // 전달하려는 Data(Value)
)
type = "text/plain"
}
startActivity(Intent.createChooser(shareIntent, null))
}
}
}
반응형
'안드로이드' 카테고리의 다른 글
Android EditText 키보드 내리기 (kotlin) (0) | 2022.01.06 |
---|---|
안드로이드 바텀 내비게이션 예제 Kotlin (0) | 2021.12.22 |
Android Naver Map - MapView 기본 사용 예제 (Kotlin) (0) | 2021.12.07 |
Android RecyclerView with DataBinding Example (0) | 2021.12.03 |
Android Splash Screen 예제(Kotlin) (0) | 2021.12.02 |
Comments