Android 스튜디오에서 ScrollView를 사용하여 데이터 입력 처리

4730 단어 Android
android 스튜디오 개발에서 데이터 입력 처리에서 Header, Detail, Footer의 구성에서 ScrollView를 이용하여 Detail 부분에 키보드를 표시할 때 입력한 항목이 화면을 적시에 스크롤하는 예입니다.


위에서 말한 바와 같이 사용할 수 있다.
1.merge 태그를 사용하여 제목 부분을 만듭니다.
<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="50dp"
    android:background="@drawable/white_grey_border_bottom"
    >

    <android.support.v7.widget.Toolbar
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/profileToolBar">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">


            <ImageView
                android:layout_width="30dp"
                android:layout_height="30dp"
                android:layout_marginStart="10dp"
                android:layout_alignParentLeft="true"
                android:layout_marginEnd="20dp"
                android:layout_centerHorizontal="true"
                android:id="@+id/backArrow"
                android:src="@drawable/ic_backarrow"/>

            <TextView
                android:layout_toRightOf="@+id/backArrow"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                android:text="Edit Photo Detail"
                android:textSize="20sp"
                android:textColor="@color/black"
                android:layout_marginStart="5dp"
                android:id="@+id/profileName"/>

            <ImageView
                android:layout_width="30dp"
                android:layout_height="30dp"
                android:layout_marginStart="10dp"
                android:layout_alignParentRight="true"
                android:layout_marginEnd="20dp"
                android:layout_centerVertical="true"
                android:id="@+id/saveChanges"
                android:src="@drawable/ic_checkmark"/>


        </RelativeLayout>


    </android.support.v7.widget.Toolbar>

</android.support.design.widget.AppBarLayout>
2, Footer 부분도 마찬가지로 제작됩니다.
xmlns:app="http://schemas.android.com/apk/res-auto">
<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="50dp"
    android:layout_alignParentBottom="true">

    <com.ittianyu.bottomnavigationviewex.BottomNavigationViewEx
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/bottomNavViewBar"
        android:background="@drawable/white_grey_border_top"
        app:menu="@menu/menu_navigation">

    </com.ittianyu.bottomnavigationviewex.BottomNavigationViewEx>


</RelativeLayout>
3. 상기merge의 레이아웃은 다음과 같다.

xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/mainLayout2"
>
<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/rellayout1">

        <include layout="@layout/snippet_top_editphototoolbar"/>

    </RelativeLayout>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@+id/rellayout1"
        android:layout_alignParentBottom="true"
        android:id="@+id/rellayout2">


        <include layout="@layout/snippet_center_editphoto"/>


    </RelativeLayout>

    <!-- bottom navigation -->
    <include layout="@layout/layout_bottom_navigation_view"/>


</RelativeLayout>

좋은 웹페이지 즐겨찾기