0

我们可以设计这样的页脚吗(见附图),页脚中的图像看起来像是从一个布局弹出到另一个布局。

图片

任何人都可以让我知道如何设计这样的,如果可能的话,一些代码示例。

谢谢。

4

2 回答 2

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

PS 请注意 layout_weight 属性,它为您的所有 LinearLayour 孩子提供相同的宽度。

于 2012-07-10T13:24:53.290 回答
0

让我们假设页脚是页脚布局和页脚布局在正文布局下。

现在使用有 2 行的背景图像,第一行的颜色必须与 body-layout 的颜色匹配,图像的第二行将是黑色。

将此图像用作页脚布局的背景并根据需要使用 ImageButtons 设计它。

这将为您提供上述视觉效果。

于 2012-07-10T13:29:58.193 回答