Page 517 - 3-3
P. 517
android:layout_height="wrap_content"
android:background="#99FFA300"/>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager <!-- Fragment 를 담을 ViewPaper -->
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>
로딩이 끝난 후 표시되는 어플의 메인 화면이다.
파. elevator_itemlist
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView <!-- 로그의 기록 번호 열 -->
android:id="@+id/itemNumber"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_margin="5dp"/>
<TextView <!-- 로그의 기록 정보 열 -->
android:id="@+id/itemEvent"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="4"
android:layout_margin="5dp"/>
<TextView <!-- 로그의 기록 날짜 열 -->
android:id="@+id/itemDate"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2"
android:layout_margin="5dp"/>
</LinearLayout>
- 517 -