Je veux utiliser Android.support.design.widget.CoordinatorLayout
, Android.support.design.widget.AppBarLayout
, Android.support.design.widget.CollapsingToolbarLayout
dans mon fichier XML. Quelles sont les possibilités de positionner une vue sous une autre vue?
par exemple: position ScrollView
sous ImageView
dans CoordinatorLayout
.
mon code 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>
Comment définir ScrollView
ci-dessous dans ImageView
? TNX <3
Je suppose que vous essayez de positionner des vues à l'intérieur de CollapsingToolbarLayout
. Le CollapsingToolbarLayout
étend FrameLayout
, de sorte que la seule possibilité est de positionner les vues consiste à utiliser la marge et la gravité de la vue. Dans votre cas, vous pouvez positionner un ImageView
comme:
<ImageView
Android:layout_width="match_parent"
Android:layout_height="100dp"
Android:layout_marginTop="140dp" <-height of the ScrollView
/>
Si vous essayez d’ajouter le nouveau ImageView
directement au CoordinatorLayout
, vous pouvez utiliser un ancre :
<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
/>