在我的应用程序中,我实施了一个带有recyclerview的新闻页面,该页面仅显示图像,标题和日期。如果用户点击特定新闻,该应用程序将重定向到新闻的详细信息页面。现在,在此页面中,用户将找到新闻的封面图片,这是该新闻的主要照片。在此新闻下方,用户将阅读该新闻的描述。在descrion下方,他可以看到许多与该新闻相关的图像,如4或5张图像。在这里我想提一下,所有新闻都没有固定图像列表。它可能是4,或5或6.页面应具有滚动视图行为。我读过有关CollapsingToolbase布局的内容。但。在这种情况下,在滚动条中我可以添加文本或图像。但是最有效的方法是什么呢。我坚持为这个细节页面创建合适的布局。
答案 0 :(得分:0)
你也可以使用另一个RecyclerView
来拍摄你的照片!这样,您可以将图像列表传递给适配器,并使图像量变为动态。
修改强>
制作类似于此的布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/imageView2"
android:layout_width="match_parent"
android:layout_height="150dp"
android:src="@color/dark_blue" />
<TextView
android:text="Your description: Lorem ipsum dolor sit amet..."
android:layout_width="match_parent"
android:layout_height="200dp" />
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
然后使用其他图像填充您的RecyclerView。
答案 1 :(得分:0)
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:focusableInTouchMode="true"
android:orientation="vertical">
<ImageView
android:id="@+id/top_seller"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorAccent"
android:contentDescription="@string/app_name"
android:adjustViewBounds="true"
android:src="@drawable/image1"
android:scaleType="fitXY"
/>
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="none">
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/large_text" />
</android.support.v4.widget.NestedScrollView>
<android.support.v7.widget.RecyclerView
android:id="@+id/image_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" />
</LinearLayout>
</ScrollView>