我们可以像这样设计一个页脚(参见附图),页脚中的图像看起来像是从一个布局弹出到另一个布局。
有人可以让我知道如何设计这样的设计,如果可能的话,还有一些代码示例。
感谢。
答案 0 :(得分:2)
在应用程序周围重用相同布局的最佳方法是使用include指令。像这样:
<include layout="@layout/my_footer" />
my_footer.xml是你的页脚布局。
在细节中,您可以使用水平方向的简单LinearLayour实现该布局:
<LinearLayout android:orientation="horizontal">
<ImageButton android:layout_weight="1"/>
<ImageButton android:layout_weight="1"/>
<ImageButton android:layout_weight="1"/>
<ImageButton android:layout_weight="1"/>
<ImageButton android:layout_weight="1"/>
</LinearLayout>
您可以在此处找到有关重复使用布局的更多信息:http://android-developers.blogspot.it/2009/02/android-layout-tricks-2-reusing-layouts.html
P.S。请注意属性layout_weight,它为您的所有LinearLayour子项提供相同的宽度。
答案 1 :(得分:0)
让我们假设页脚是页脚布局&amp;页脚布局在正文布局下。
现在使用一个有2行的背景图像,第一行的颜色必须与body-layout的颜色匹配,而图像的第二行将是黑色。
使用此图片作为页脚布局的背景&amp;用你想要的ImageButtons设计它。
这将为您提供上述视觉效果。