如何在android中的标题上设置图像滑块

时间:2015-10-06 06:56:27

标签: android android-layout android-imageview android-image

我是android开发新手请帮助我。 我想在页面顶部设置图像滑块,图像是动态来通过Web服务。图像滑块的示例如下所示: - enter image description here

就像这张图片中的滑块展示(背包的Back Story shop)同样我也想要并记住图像是动态的。

我的activity.main.xml:

<RelativeLayout xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:custom="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
    android:id="@+id/linear_layout_outer"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <include
        android:id="@+id/toolbar"
        layout="@layout/toolbar" />
    </LinearLayout>

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:layout_below="@+id/linear_layout_outer">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <com.daimajia.slider.library.SliderLayout
            android:id="@+id/slider"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            custom:pager_animation="Accordion"
            custom:auto_cycle="true"
            custom:indicator_visibility="visible"
            custom:pager_animation_span="1100" />

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            <HorizontalScrollView
                android:id="@+id/linear_layout_special_product_horizontal_scroll_view"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:scrollbars="none">

                <LinearLayout
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:orientation="vertical">

                    <LinearLayout
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:orientation="horizontal">

                        <ImageView
                            android:id="@+id/linear_layout_special_produce_image01"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:src="@drawable/shop240x320"
                            android:paddingRight="65dp"
                            android:contentDescription="@string/special_producr"/>

                        <ImageView
                            android:id="@+id/linear_layout_special_produce_image02"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:src="@drawable/shop240x320"
                            android:paddingRight="65dp"
                            android:contentDescription="@string/special_producr"/>

                        <ImageView
                            android:id="@+id/linear_layout_special_produce_image03"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:src="@drawable/shop240x320"
                            android:paddingRight="65dp"
                            android:contentDescription="@string/special_producr"/>

                        <ImageView
                            android:id="@+id/linear_layout_special_produce_image04"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:src="@drawable/shop240x320"
                            android:paddingRight="65dp"
                            android:contentDescription="@string/special_producr"/>

                        <ImageView
                            android:id="@+id/linear_layout_special_produce_image05"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:src="@drawable/shop240x320"
                            android:paddingRight="65dp"
                            android:contentDescription="@string/special_producr"/>
                    </LinearLayout>
                </LinearLayout>
            </HorizontalScrollView>
        </LinearLayout>  
    </LinearLayout>
</ScrollView></RelativeLayout>

目前显示如下: -

enter image description here

这也给出了一个错误找不到样式&#39; SliderStyle&#39;在当前主题中是什么意思

3 个答案:

答案 0 :(得分:2)

有很多方法可以达到你想要的效果: 1.通过使用View Pager。 2.使用Recycler View(并设置Layout Manager Orientation HORIZONTAL)。

以上两个是用于以上述设计格式呈现图像视图(或其他视图)的最简单和基本的小部件。

现在还有一件事你需要的是:在这些图像视图中渲染你的实际图像。 我假设您从某些Web服务获取了Url的列表。现在,您需要将这些URL呈现到ImageView中。为此,您可以使用像picaso或Aquery这样的第三方库。

关键部分是在您附加到这些小部件的适配器中,首先将Urls列表传递给该适配器,然后在其中一个库的帮助下设置Image View Source。

答案 1 :(得分:2)

不要自己动手制作,而是使用漂亮而简单的库。 Here就是其中之一。

答案 2 :(得分:0)

使用此库 https://github.com/MoeidHeidari/banner

实现'com.github.MoeidHeidari:banner:1.04'

您的活动

BannerLayout banner =(BannerLayout)findViewById(R.id.Banner);

    List<String> urls = new ArrayList<>();
    urls.add("http://szzljy.com/images/mountain/mountain4.jpg");
    urls.add("http://szzljy.com/images/mountain/mountain4.jpg");
    urls.add("http://www.visitgreece.gr/deployedFiles/StaticFiles/Photos/Generic%20Contents/Forests/mountains_2_560.jpg");
    urls.add("http://szzljy.com/images/mountain/mountain4.jpg");
    urls.add("http://www.visitgreece.gr/deployedFiles/StaticFiles/Photos/Generic%20Contents/Forests/mountains_2_560.jpg");
    urls.add("http://szzljy.com/images/mountain/mountain4.jpg");


    BaseBannerAdapter webBannerAdapter=new BaseBannerAdapter(this,urls);
    webBannerAdapter.setOnBannerItemClickListener(new BannerLayout.OnBannerItemClickListener() {
        @Override
        public void onItemClick(int position)
        {


        }
    });
    banner.setAdapter(webBannerAdapter);