具有说明的图像滑块

时间:2019-02-26 14:20:54

标签: java android textview

我有一个带适配器和指示点的完全可用的imageslider。但是现在我想使用TextView为每个图像添加描述。有人知道如何执行此操作吗?谢谢。

编辑:请参见下面的代码

MainActivity.java:

public class MainActivity extends AppCompatActivity {
    private String[] imageUrls = new String[]{
            "http://image1.png",
            "http://image2.png",
            "http://image3.png",
            "http://image4.png",
            "http://image5.png"
    };

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        ViewPager viewPager = findViewById(R.id.view_pager);
        ViewPagerAdapter adapter = new ViewPagerAdapter(this, imageUrls);
        viewPager.setAdapter(adapter);

        TabLayout tabLayout = (TabLayout) findViewById(R.id.tabDots);
        tabLayout.setupWithViewPager(viewPager);
    }
}

activity_main.xml:

<?xml version="1.0" encoding="utf-8"?>
<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"
    tools:context=".MainActivity">

    <android.support.v4.view.ViewPager
        android:id="@+id/view_pager"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <ImageView
            android:id="@+id/image_view"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:scaleType="center" />

    </android.support.v4.view.ViewPager>

    <android.support.design.widget.TabLayout
        android:id="@+id/tabDots"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        app:tabBackground="@drawable/tab_selector"
        app:tabGravity="center"
        app:tabIndicatorHeight="0dp" />


</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

从xml文件中删除图像视图。只能将viewpager元素保留在那里。

 <android.support.v4.view.ViewPager
        android:id="@+id/view_pager"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

</android.support.v4.view.ViewPager>

然后,您需要创建具有所需布局的自定义适配器。您可以按照以下https://inducesmile.com/android/understanding-android-viewpager-and-custom-pageradapter/

找到创建自定义适配器的步骤

然后您需要更改viewPager.setAdapter(adapter);来设置自定义适配器的对象