include 태그 사용
2016. 3. 28. 17:22ㆍAndroid
반응형
1. include 태그에 포함될 layout xml을 생성
2. layout xml을 포함할 include 태그 선언
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:focusable="true"
android:focusableInTouchMode="true">
<include
android:id="@+id/scrollSetting"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:focusable="true"
android:focusableInTouchMode="true"
layout="@layout/setting" => 요부분임(setting은 xml 파일명)
/>
</ScrollView>
반응형
'Android' 카테고리의 다른 글
페이스북 간편 로그인 (0) | 2016.03.29 |
---|---|
Utils class (0) | 2016.03.28 |
EditText focus 없애기 (0) | 2016.03.28 |
자신의 휴대폰 번호 가져오기 (0) | 2016.03.28 |
연락처 한글 초성 검색 (0) | 2016.03.28 |