android 开发布局:如何在屏幕下方显示一排按钮
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android 开发布局:如何在屏幕下方显示一排按钮相关的知识,希望对你有一定的参考价值。
我现在做出来的,最下面的按钮总被中间填充的 webview覆盖了!
新手,求指教!
效果如图,不让我贴代码。。。贴了过长!
2、下半部分LinearLayout高度固定,上半部分LinearyLayout设置layout_weight权重,占满剩余屏幕空间
3、下半部分LinearLayout中添加按钮,就是把按钮放到了底部
<LinearLayout>
<LinearLayout
android:layout_height="wrap_content"
android:llayout_weight="1">
//上半部分设置高度自适应,并且权重为1
</LinearyLayout>
<LinearLayout android:layout_height="50px">
<button andtoid:text="底部按钮"/>
</LinearyLayout>
</LinearLayout> 参考技术A 使用RelativeLayout把WebView和下面的按钮包起来。下面的按钮用LinearLayout包起来,并水平排列,定义固定高度,可以根据喜好自行调整,设置layout_alignParentBottom为true。WebView设置高度wrap_content,设置距离父布局底部一个LinearLayout高度,就是刚才定义的固定高度。另一个解决方案就是使用Material Design风格的TabLayout,固定下面的按钮。但是实现比较麻烦。 参考技术B 将功能键做成一个layout,然后include追问
你好,能给个简单的例子吗,不太懂哦!
追答额 例子的话
不好看,不过你慢慢美化一下就行
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.pblog.MainActivity">
<!--这是标题-->
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="48dp"
android:background="@color/colorAccent"
android:gravity="center"/>
<!--你要的下方按钮-->
<Button
android:layout_width="match_parent"
android:layout_height="48dp"
android:layout_alignParentBottom="true"
android:text="按钮"/>
<WebView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/title"
android:layout_marginBottom="48dp"/>
</RelativeLayout>
webview覆盖了button,那就让它间距父控件最下方一个button的高度即可:layout_marginBottom="48dp"
参考技术D webView不能固定高度么?或者你用Fragment 主界面弄标题跟下方的标题按钮,中间那部分设置成FrameLayout然后在程序中把WebView加到 rameLayout那个位置,这样应该不会被覆盖了。Android:将元素放在另一个元素下方并在屏幕底部对齐
【中文标题】Android:将元素放在另一个元素下方并在屏幕底部对齐【英文标题】:Android: put element below another element and align at bottom of screen 【发布时间】:2014-07-23 01:20:48 【问题描述】:我正在尝试定义一个布局,其中ImageView
在屏幕底部和GridView
下方对齐,以避免重叠。
然而,这会导致 ImageView
设置在 GridView
下方,但未与屏幕底部对齐。
可以使用不同的布局来解决这个问题吗?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_
android:layout_
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:background="@drawable/background"
android:orientation="vertical">
<RelativeLayout
android:id="@+id/gs_top_text_container"
android:layout_
android:layout_
android:layout_alignParentTop="true"
android:paddingBottom="30dp">
<RelativeLayout
android:id="@+id/gs_top_sub_container"
android:layout_
android:layout_
android:layout_centerHorizontal="true"
android:paddingBottom="30dp">
<TextView
android:id="@+id/text_l"
android:layout_
android:layout_
android:layout_alignParentLeft="true"/>
<TextView
android:id="@+id/text_t"
android:layout_
android:layout_
android:layout_alignParentRight="true"/>
</RelativeLayout>
<RelativeLayout
android:layout_
android:layout_
android:layout_below="@id/gs_top_sub_container"
android:layout_centerHorizontal="true">
<TextView
android:id="@+id/text1"
android:layout_
android:layout_/>
<TextView
android:id="@+id/text2"
android:layout_
android:layout_
android:layout_toRightOf="@id/text1"/>
</RelativeLayout>
</RelativeLayout>
<GridView
android:id="@+id/gs_grid_view"
android:layout_
android:layout_
android:layout_below="@id/gs_top_text_container"
android:descendantFocusability="blocksDescendants"
android:horizontalSpacing="2dp"
android:verticalSpacing="2dp"
android:numColumns="3"
android:gravity="center"
android:paddingBottom="10dp"
android:paddingTop="10dp" />
<ImageView
android:id="@+id/gs_bottom_logo"
android:layout_
android:layout_
android:layout_below="@id/gs_grid_view"
android:layout_alignParentBottom="true"
android:adjustViewBounds="true"
android:maxWidth="200dp"
android:paddingLeft="20dp"
android:paddingRight="20dp"/>
</RelativeLayout>
【问题讨论】:
【参考方案1】:我会这样做:
1 - 将 ImageView 放在底部 2 - 将 GridView 放在上面。
<!-- First anchor this View to the bottom -->
<ImageView
android:id="@+id/gs_bottom_logo"
android:layout_
android:layout_
android:layout_alignParentBottom="true"
android:adjustViewBounds="true"
android:maxWidth="200dp"
android:paddingLeft="20dp"
android:paddingRight="20dp"
/>
<!-- Then put this View ABOVE the ImageView -->
<GridView
android:id="@+id/gs_grid_view"
android:layout_
android:layout_
android:layout_below="@id/gs_top_text_container"
android:layout_above="@id/gs_bottom_logo"
android:descendantFocusability="blocksDescendants"
android:horizontalSpacing="2dp"
android:verticalSpacing="2dp"
android:numColumns="3"
android:gravity="center"
android:paddingBottom="10dp"
android:paddingTop="10dp"
/>
这样我在 RelativeLayout
中使用了元素的相对性[编辑]
只是为了好玩...我优化了您的整个布局。 请注意如何通过使用many layoutless来实现相同的设计。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_
android:layout_
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:background="@drawable/background"
>
<TextView
android:id="@+id/text_l"
android:layout_
android:layout_
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:paddingBottom="30dp"
/>
<TextView
android:id="@+id/text_t"
android:layout_
android:layout_
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:paddingBottom="30dp"
/>
<!--
This container is (unfortunately) still needed, to make these two
textViews horizontally centered... :(
-->
<RelativeLayout
android:id="@+id/rlCentering"
android:layout_
android:layout_
android:layout_below="@id/text_l"
android:layout_centerHorizontal="true"
android:paddingBottom="30dp"
>
<TextView
android:id="@+id/text1"
android:layout_
android:layout_
/>
<TextView
android:id="@+id/text2"
android:layout_
android:layout_
android:layout_toRightOf="@id/text1"
/>
</RelativeLayout>
<!-- First, anchor this View to the bottom -->
<ImageView
android:id="@+id/gs_bottom_logo"
android:layout_
android:layout_
android:layout_alignParentBottom="true"
android:adjustViewBounds="true"
android:maxWidth="200dp"
android:paddingLeft="20dp"
android:paddingRight="20dp"
/>
<!-- Then put this View ABOVE the ImageView -->
<GridView
android:id="@+id/gs_grid_view"
android:layout_
android:layout_
android:layout_below="@id/rlCentering"
android:layout_above="@id/gs_bottom_logo"
android:descendantFocusability="blocksDescendants"
android:horizontalSpacing="2dp"
android:verticalSpacing="2dp"
android:numColumns="3"
android:gravity="center"
android:paddingBottom="10dp"
android:paddingTop="10dp"
/>
</RelativeLayout>
这就是我在图形编辑器中得到的(我放了一些我拥有的图像和一些文本来识别 TextView):
【讨论】:
虽然没时间测试,但看起来不错。谢谢。下次写评论时尽量不要这么粗鲁。 粗鲁吗?对此感到抱歉。我只是想让你专注于实际与最佳实践。毕竟,有时老师会大喊大叫。但他们只是想让你从错误中吸取教训。请珍惜它 - 尽可能简化,尽可能扁平化你的设计。并在不牺牲外观的情况下获得最佳的表演效果。 ;) - 您可能会注意到我必须保留一个内部 RelativeLayout,只是为了将这 2 个 TextView 水平居中(您可能会找到更好的替代方案来消除对该容器的需求)。 刚刚试了代码,很完美。网格现在占据了所有可用空间,看起来好多了。顺便问一下,您知道我如何设置 GridView 以使项目均匀分布吗?现在,在设置android:stretchMode="spacingWidthUniform"
时,我最终在底部有很多空白。谢谢
我很高兴你听从了我的建议,而且效果很好;)。也许这篇 ***.com/questions/7705330/… 的帖子回答了你的新问题?
没用。我想我会尝试以编程方式设置项目大小【参考方案2】:
通过将ImageView放在RelativeLayout中解决它,在RelativeLayout中设置layout_below
项和ImageView的alignParentBottom
项:
<RelativeLayout
android:layout_
android:layout_
android:layout_below="@id/gs_grid_view">
<ImageView
android:id="@+id/gs_bottom_logo"
android:layout_
android:layout_
android:layout_alignParentBottom="true"
android:adjustViewBounds="true"
android:maxWidth="200dp"
android:paddingLeft="20dp"
android:paddingRight="20dp"/>
</RelativeLayout>
【讨论】:
不好的做法是的,但很实用。我没有看到您建议的替代方法来解决它。 我会告诉你一个更干净的选择。实用并不总是最好的选择。以上是关于android 开发布局:如何在屏幕下方显示一排按钮的主要内容,如果未能解决你的问题,请参考以下文章
android开发 relative布局中 如何使得image2显示在image1上面