작성
·
386
답변 1
0
안녕하세요 오카네님!
맞습니다, 웹에서는 CSS 속성을 재사용하는 것이 가능했습니다.
당연히 안드로이드도 됩니다!
강의 속에서는 여러분들이 디자인 속성 값에 익숙해지고, 여러 값들을 바로 넣고 변경해보는 것을 실습하셨으면 좋겠어서 그렇게 구성을 했답니다.
안드로이드에서는 어떻게 속성값을 재활용할 수 있을까요?
첫 번째로는 <include> 태그를 사용하는 방법입니다.
위에 로고와 제목을 나타내는 'titlebar.xml'을 아래와 같이 작성합니다.
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/titlebar_bg"
tools:showIn="@layout/activity_main" >
<ImageView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/gafricalogo" />
</FrameLayout>
그리고 아래처럼 재 사용하고 싶은 레이아웃에서 <include> 태그를 사용하여 재사용할 수 있습니다.
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/app_bg"
android:gravity="center_horizontal">
<include layout="@layout/titlebar"/> // 여기서 재사용합니다.
<TextView android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
android:padding="10dp" />
...
</LinearLayout>
두 번째로는 커스텀 뷰도 생성할 수 있습니다.
버튼, 이미지뷰, 텍스트뷰 모두 강의에서 배웠다시피 "View" 클래스를 상속받은 클래스들입니다. 이런 뷰들을 우리도 직접 만들 수가 있습니다.
해당 내용은 여기서 설명하기는 약간 길어서요, 자세한 내용은 아래 안드로이드 공식 문서를 참고 바랍니다.
https://developer.android.com/develop/ui/views/layout/custom-views/create-view
질문에 답변이 되었기를 바랍니다! 감사합니다 :)