Android 스튜디오에서 ScrollView를 사용하여 데이터 입력 처리
4730 단어 Android
위에서 말한 바와 같이 사용할 수 있다.
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>
Reference
이 문제에 관하여(Android 스튜디오에서 ScrollView를 사용하여 데이터 입력 처리), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/shinsakujazzbass/items/d6e115da07d9a995c8f2텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)