XmlファイルでAndroid.support.design.widget.CoordinatorLayout
、Android.support.design.widget.AppBarLayout
、Android.support.design.widget.CollapsingToolbarLayout
を使用したい。ビューを別のビューの下に配置する可能性は何ですか?
例: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
に直接追加しようとしている場合、 anchor を利用できます。
<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
/>