我需要帮助将图像(后向和前向图像)放置在我的画廊视图的两端。我有一个画廊来列出水平滚动的菜单,而这个画廊位于RelativeLayout 中,如何在不滚动的情况下获取画廊两端的图像。
提前致谢。
我需要帮助将图像(后向和前向图像)放置在我的画廊视图的两端。我有一个画廊来列出水平滚动的菜单,而这个画廊位于RelativeLayout 中,如何在不滚动的情况下获取画廊两端的图像。
提前致谢。
我会稍微修改一下 Praveen 的回答:
<LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal">
<ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" />
<Gallery android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1"/>
<ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" />
</LinearLayout>
android:layout_weight="1" in 在这里非常重要。
答案就在你的问题本身。放在imageview
两边。示例布局如下所示
<LinearLayout>
<ImageView....../>
<Gallery .../>
<ImageView .../>
</LinearLayout>
希望能帮助到你。