Page 826 - 3-3
P. 826
android:orientation="horizontal" android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- 이미지 ㅡㅡ >
<ImageView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:id="@+id/imageView1"
android:layout_weight="1" />
<!-- 크기 조정을 위한 리니어 레이아웃 ㅡㅡ >
<LinearLayout
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="4">
<!-- 제목 텍스트ㅡㅡ >
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="New Text"
android:id="@+id/textView1"
android:textSize="24dp"
android:textColor="#000000"
android:gravity="center_vertical"
android:layout_weight="2" />
<!-- 내용 텍스트 ㅡㅡ >
<TextView
android:layout_width="match_parent“
android:layout_height="wrap_content"
android:text="New Text"
android:id="@+id/textView2"
android:textSize="16dp"
android:textColor="#666666"
android:layout_weight="1" />
</LinearLayout>
</LinearLayout>
<office_login.xml> ( 스마트 오피스 로그인 )
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/login_background">
<!-- 화면 크기에 따라 비율 설정 ㅡㅡ >
<com.ssomai.android.scalablelayout.ScalableLayout
- 826 -