반응형
Android의 CoordinatorLayout에서 다른보기 아래에보기 위치 지정
내가 사용하려면 android.support.design.widget.CoordinatorLayout
, android.support.design.widget.AppBarLayout
, android.support.design.widget.CollapsingToolbarLayout
내 xml 파일에. 다른보기 아래에보기를 배치 할 수있는 가능성은 무엇입니까?
예를 들어 : 위치 ScrollView
아래 ImageView
에서 CoordinatorLayout
.
내 XML 코드 :
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/background_color"
tools:context="com.tellfa.smsbox.activities.postShow_Page">
<android.support.design.widget.CoordinatorLayout
android:id="@+id/post_show_coordinator"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/post_show_collapsing_toolbar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:contentScrim="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways"
>
<ImageView
android:id="@+id/post_picture_image"
android:layout_width="fill_parent"
android:layout_height="200dp"
android:scaleType="centerCrop"
android:src="@drawable/cover_menu_bg2"
android:visibility="visible"
app:layout_collapseMode="parallax" />
<android.support.v7.widget.Toolbar
android:id="@+id/post_show_app_bar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:layout_collapseMode="pin">
<ImageView
android:id="@+id/post_show_fav_image"
android:layout_width="25dp"
android:layout_height="25dp"
android:layout_gravity="right"
android:layout_marginRight="10dp"
android:alpha="0.7"
android:src="@drawable/favorite_post_un" />
<ImageView
android:id="@+id/post_show_share_image"
android:layout_width="25dp"
android:layout_height="25dp"
android:layout_gravity="right"
android:layout_marginRight="10dp"
android:alpha="0.7"
android:src="@drawable/abc_ic_menu_share_mtrl_alpha" />
<ImageView
android:id="@+id/post_show_report_image"
android:layout_width="25dp"
android:layout_height="25dp"
android:layout_gravity="right"
android:layout_marginRight="10dp"
android:alpha="0.7"
android:padding="2dp"
android:src="@drawable/post_report" />
</android.support.v7.widget.Toolbar>
<RelativeLayout
android:id="@+id/post_show_space"
android:layout_width="fill_parent"
android:layout_height="?attr/actionBarSize"
android:layout_below="@+id/post_picture_image"
android:visibility="gone" />
<ScrollView
android:id="@+id/post_text_layout"
style="@style/scrollbar_shape_style"
android:layout_width="fill_parent"
android:layout_height="140dp"
android:layout_gravity="bottom"
app:layout_collapseMode="parallax">
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/category_text">
<com.tellfa.smsbox.components.tellfa_TextView_en
android:id="@+id/post_text_text"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginBottom="2dp"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:text="@string/connect_info"
android:textColor="@color/top_user_bg"
android:textSize="18sp" />
</RelativeLayout>
</ScrollView>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
</android.support.design.widget.CoordinatorLayout>
</RelativeLayout>
ScrollView
아래에서 설정하는 방법 은 ImageView
무엇입니까? TNX <3
나는 당신이 CollapsingToolbarLayout
. 는 CollapsingToolbarLayout
연장 FrameLayout
유일한 가능성은 위치 뷰하므로보기 마진 중력을 이용하는 것이다. 귀하의 경우 다음 ImageView
과 같은 위치를 지정할 수 있습니다 .
<ImageView
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_marginTop="140dp" <-height of the ScrollView
/>
에 ImageView
직접 새를 추가하려는 경우 앵커CoordinatorLayout
를 사용할 수 있습니다 .
<ImageView
android:layout_width="match_parent"
android:layout_height="100dp"
app:layout_anchor="@+id/post_text_layout" <-view to anchor the imageview
app:layout_anchorGravity="bottom" <- specifies edge of the anchor that should be used
android:layout_gravity="bottom" <- how to position this view relatively to the anchoring position
/>
ReferenceURL : https://stackoverflow.com/questions/33668144/position-view-below-another-view-in-coordinatorlayout-in-android
반응형
'programing' 카테고리의 다른 글
Java 8의 새로운 기본 인터페이스 모델은 어떻게 작동합니까 (다이아몬드, 다중 상속 및 우선 순위 포함)? (0) | 2021.01.15 |
---|---|
Github에서 단일 조직의 새 리포지토리에 대한 자동 알림 구독을 끄려면 어떻게해야합니까? (0) | 2021.01.15 |
cmake에서 생성 한 Visual Studio C ++ 프로젝트의 헤더 파일 나열 (0) | 2021.01.15 |
게임 프로그래밍에서 단위 테스트가 가능합니까? (0) | 2021.01.15 |
활동을 등록 할 때 "점"은 무엇입니까? (0) | 2021.01.15 |