android中的parallaxscroll视图无法正常工作

时间:2014-11-03 06:07:53

标签: android xml parallax

您好我正在尝试使用以下链接中的库在我的应用程序中实现parallaxscrollview: -

https://github.com/nirhart/ParallaxScroll

以下是我的xml代码: -

    <com.nirhart.parallaxscroll.views.ParallaxScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:inner_parallax_factor="1.9"
    app:parallax_factor="1.9"
    app:parallax_views_num="3"
    android:background="@drawable/bg_profile_summary" >

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

    <LinearLayout
            android:id="@+id/LIN_First"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:baselineAligned="false"
            android:weightSum="2" >

            <RelativeLayout
                android:id="@+id/REL_People"
                android:layout_width="0dp"
                android:layout_height="60dp"
                android:layout_weight="1"
                android:background="@drawable/bg_profile_list_item"
                android:padding="10dp" >

                <TextView
                    android:id="@+id/TXT_Title"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_centerVertical="true"
                    android:layout_gravity="center_vertical"
                    android:layout_marginLeft="5dp"
                    android:textStyle="bold"
                    android:text="@string/str_txt_people"
                    android:textColor="#FFFFFF" />

                <ImageView
                    android:id="@+id/IMG_Right_Arrow"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentRight="true"
                    android:layout_centerVertical="true"
                    android:layout_gravity="right"
                    android:contentDescription="@string/app_name"
                    android:src="@drawable/ic_nav_right_white" />
            </RelativeLayout>

            <RelativeLayout
                android:id="@+id/REL_Popular"
                android:layout_width="0dp"
                android:layout_height="60dp"
                android:layout_weight="1"
                android:background="@drawable/bg_profile_list_item"
                android:padding="10dp" >

                <TextView
                    android:id="@+id/TXT_TitlePopular"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_centerVertical="true"
                    android:layout_gravity="center_vertical"
                    android:layout_marginLeft="5dp"
                    android:textStyle="bold"
                    android:text="@string/str_txt_popular"
                    android:textColor="#FFFFFF" />

                <ImageView
                    android:id="@+id/IMG_Right_Arrow1"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentRight="true"
                    android:layout_centerVertical="true"
                    android:layout_gravity="right"
                    android:contentDescription="@string/app_name"
                    android:src="@drawable/ic_nav_right_white" />
            </RelativeLayout>

            </LinearLayout>

    <RelativeLayout
                android:id="@+id/REL_Official_Act"
                android:layout_width="match_parent"
                android:layout_height="60dp"
                android:layout_below="@+id/LIN_First"
                android:background="@drawable/bg_profile_list_item"
                android:padding="10dp" >

                <TextView
                    android:id="@+id/TXT_OfficialAccounts"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_centerVertical="true"
                    android:layout_gravity="center_vertical"
                    android:layout_marginLeft="5dp"
                    android:textStyle="bold"
                    android:text="@string/str_official_accounts"
                    android:textColor="#FFFFFF" />

                <ImageView
                    android:id="@+id/IMG_Right_Arrow3"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentRight="true"
                    android:layout_centerVertical="true"
                    android:layout_gravity="right"
                    android:contentDescription="@string/app_name"
                    android:src="@drawable/ic_nav_right_white" />
            </RelativeLayout>



            <RelativeLayout
                android:id="@+id/REL_Search"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/REL_Official_Act"
                android:layout_marginBottom="10dp"
                android:layout_marginTop="10dp"
                android:paddingLeft="10dp"
                android:paddingRight="10dp" >

                <EditText
                    android:id="@+id/EDT_Search_text"
                    android:layout_width="250dp"
                    android:layout_height="35dp"
                    android:background="@drawable/ic_search_text_background"
                    android:hint="@string/str_edt_searchanything_hint"
                    android:paddingBottom="2dp"
                    android:paddingLeft="15dp"
                    android:paddingTop="2dp" />

                <RelativeLayout
                    android:id="@+id/REL_SearchButton"
                    android:layout_width="wrap_content"
                    android:layout_height="35dp"
                    android:layout_alignParentRight="true"
                    android:layout_alignParentTop="true"
                    android:layout_toRightOf="@+id/EDT_Search_text"
                    android:background="@drawable/ic_search_btn_bg"
                    android:gravity="center" >

                    <Button
                        android:id="@+id/BTN_Search"
                        android:layout_width="30dp"
                        android:layout_height="30dp"
                        android:layout_centerVertical="true"
                        android:background="@drawable/ic_search"
                        android:padding="5dp" />
                </RelativeLayout>
            </RelativeLayout>



            <ListView
                android:id="@+id/LST_AlbumList"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_margin="10dp"
                android:layout_alignParentBottom="true"
                android:layout_below="@+id/REL_Search"
                android:dividerHeight="0dip" >
            </ListView>

 </RelativeLayout>
 </com.nirhart.parallaxscroll.views.ParallaxScrollView>

我正在尝试实现MultipleParallaxScrollView。

但没有任何事情发生。 有人请解释一下该怎么办? 提前谢谢。

2 个答案:

答案 0 :(得分:1)

  

您需要在 ParallaxScrollView 中将 LinearLayout 用作子项。

您应该将一个孩子放在包含整个内容的ParallaxScrollView 中进行滚动;这是 LinearLayout

答案 1 :(得分:0)

发生此问题是因为依赖项使用implementation 'com.github.nirhart:parallaxscroll:1.0'无法使用compileSdkVersion 27或新的sdk版本,

你可以通过github和项目中的impot模块下载模块,并使用你的项目sdk版本进行更新。this is my project update library gradle sdk version