android inflater
사용자 UI, 즉 View를 만들기위해서는 XML나 Code로 구현해 주어야 한다.
[XML]
<Button
android:id="@+id/btn_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
혹은
[Code]
Button myButton = new Button(this);
RelativeLayout myLayout = new RelativeLayout(this);
RelativeLayout.LayoutParams buttonParams =
new RelativeLayout.LayoutParams(
RelativeLayout.LayoutParams.WRAP_CONTENT,
RelativeLayout.LayoutParams.WRAP_CONTENT);
myLayout.addView(myButton, buttonParams);
setContentView(myLayout);
Code를 보게 되면 Button 을 표시하기 위해 Button instance를 생성하고, setContentView를 통해 화면에 보여주게 된다.
반면 XML의 경우는 화면에 보여주기 위해 다음과 같은 변환 과정을 거쳐야 한다.
XML -(inflate)-> Code -> 화면 표시
LayoutInflater inflater = (LayoutInflater) getSystemService( Context.LAYOUT_INFLATER_SERVICE ); LinearLayout linearLayout = (LinearLayout) inflater.inflate( R.layout.inflate_test, null ); setContentView( linearLayout );
여기서 XML로 사용된 inflate_test layout의 root element를 확인해 해당 type으로 inflate해주어야 한다.
'Android' 카테고리의 다른 글
Android - Preferences (Data의 저장) (0) | 2016.02.24 |
---|---|
[Galaxy S6] 롤리팝 (Lollipop)에서 마시멜로우 (Marshmallow)로. (0) | 2016.02.22 |
Android - 권한 정보 (Permission) 확인 및 권한 제거 (0) | 2016.02.19 |
Android - Dialog 내의 EditText Padding, Margin 조절하기 (0) | 2016.02.01 |
Android Studio 그리고 adb (0) | 2016.01.30 |
Android - Toolbar icon 추가/생성하기 (0) | 2016.01.29 |
Android - Widget (위젯) 기본 생성 (0) | 2016.01.27 |
Android - 이미지 저장 및 변경 on Project. (0) | 2016.01.24 |