Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- linux
- react
- view
- vim
- ConstraintLayout
- cardview
- Retrofit2
- Git
- ReactDOM
- permission
- android
- Kotlin
- component
- http
- props
- function scope
- ViewGroup
- .kt
- LinearLayout
- javascript
- layout
- RecyclerView
- java
- Anro Coroutines
- 안드로이드
- intent
- Anko SQLite
- block scope
- RelativeLayout
- Eclipse
Archives
- Today
- Total
목록findViewById (1)
이것저것 다 개발
[Android] Fragment에서 Activity Method 사용하기
Fragment에서 Activity의 method를 사용하는 법입니다.간단한 예제로 설명하겠습니다. MainActivity.javapublic class MainActivity extends AppCompatActivity {...private Button btn;...public void testMethod() {Log.d("MainActivity", "Test Method 입니다..");}...}TestFragment.javapublic class TestFragment extends Fragment {...((MainActivity) getActivity()).testMethod();...}MainActivity의 public method를 사용할 수 있습니다. ((MainActivity) getA..
Android
2017. 11. 30. 08:40