- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
这应该很容易,但对于我来说我无法弄清楚。我想制作一堆盒子,如图所示:
+------------------+
| +------o-------+ |
| | Banner | |
| +------o-------+ |
| | Buttons | |
| | | |
| +------o-------+ |
| | | |
| | | |
| | ViewFlipper | |
| | | |
| | | |
| | | |
| | | |
| +------o-------+ |
| | Buttons | |
| +------o-------+ |
| | Footer | |
| +------o-------+ |
+------------------+
每个盒子——包括外面的盒子——代表一个包含其他小部件(甚至是一个单独的小部件)的布局。外盒与设备的宽度和高度相匹配。堆叠的宽度和高度必须与外部容器匹配。盒子的边缘彼此粘合,并粘合到容器的顶部和底部边缘,如“o”所示。所有的内部布局都紧紧包裹着它们的内容,除了最大的 - 一个 ViewFlipper - 它包含一个可滚动的列表框并且可以根据需要扩展或收缩。箱子的数量并不重要,只要是四个或更多即可。
ViewFlipper 包含许多 width/height=fillparent 的垂直 LinearLayout(我的理解是父级是 ViewFlipper)。
到目前为止,在我的尝试中,我在外部 RelativeLayout 和缝合内部框的边缘方面取得了一些成功:android:layout_below="@+id/former_box
和 android:layout_above="@+id/following_box
,但这是一个不稳定的情况,盒子开始表现得很奇怪(例如第二个完全覆盖其他,等等)每次我改变设计(例如,通过插入另一个中间盒子)。请注意,这是一个设计时布局,不涉及花哨的动态运行时重新安排。
我现在正在试验 TableLayout(单列),基本上没有值得报告的乐趣。我显然不是 Android 专家,但仍然是。执行此操作的最佳方法是什么?
编辑 - 插入实际代码由于省略实际代码似乎使问题变得模糊(我希望它能澄清它,我的错误)我在这里插入工作版本。您会注意到它缺少横幅和页脚。如上所述,每次我尝试插入额外的框时,它都会在我身上爆炸 - 经常出现循环引用。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_margin="0dip"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".TomActivity" >
<RelativeLayout
android:id="@+id/spinnerbox"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:onClick="left"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:orientation="horizontal" >
<Button
android:id="@+id/leftarrow"
android:background="#888888"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="left"
android:minHeight="0dip"
android:minWidth="0dip"
android:layout_alignParentLeft="true"
android:onClick="left"
android:text="Button" />
<TextView
android:id="@+id/spintitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/leftarrow"
android:layout_toLeftOf="@+id/rightarrow"
android:layout_centerInParent="true"
android:layout_toEndOf="@+id/leftarrow"
android:layout_toStartOf="@+id/rightarrow"
android:gravity="center"
android:text="Label" />
<Button
android:id="@+id/rightarrow"
android:background="#888888"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:gravity="right"
android:minHeight="0dip"
android:minWidth="0dip"
android:onClick="right"
android:text="Button"
/>
</RelativeLayout>
<ViewFlipper
android:id="@+id/view_flipper"
android:layout_margin="0dip"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_below="@+id/spinnerbox"
android:layout_above="@+id/buttonbox"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:layout_margin="0dip"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center" >
<ListView
android:id="@+id/CoursesView"
android:layout_margin="0dip"
android:background="#ffffff"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1" >
</ListView>
</LinearLayout>
<LinearLayout
android:layout_margin="0dip"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center" >
<ListView
android:id="@+id/FutureCoursesView"
android:layout_margin="0dip"
android:background="#ffffff"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1" >
</ListView>
</LinearLayout>
<LinearLayout
android:layout_margin="0dip"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center" >
<ListView
android:id="@+id/MessagesView"
android:layout_margin="0dip"
android:background="#ffffff"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1" >
</ListView>
</LinearLayout>
</ViewFlipper>
<LinearLayout
android:id="@+id/buttonbox"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
android:orientation="horizontal"
>
<Button
android:id="@+id/CurrentCoursesButton"
android:background="#888888"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Button" />
<Button
android:id="@+id/FutureCoursesButton"
android:background="#888888"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Button" />
<Button
android:id="@+id/UnreadMessagesButton"
android:background="#888888"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Button" />
<Button
android:id="@+id/RefreshButton"
android:background="#888888"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:onClick="refreshAll"
android:text="Button" />
<Button
android:id="@+id/LogoffButton"
android:background="#888888"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:onClick="logOff"
android:text="Button" />
</LinearLayout>
</RelativeLayout>
干杯,
经过编辑以更清楚地显示布局并提供基本原理信息
最佳答案
构建复杂/多层布局时,首先准备最内层的布局。然后将你的外部布局迭代地包裹在最里面的布局周围。这样一来,使用哪个布局容器之类的决定就变得有点简单了。
查看以下内容是否与您要查找的内容相似:
我在这里发布了布局的 xml:Link(pastebin) Link(file)
我所做的是使用您提供的布局并将其放置在垂直方向的 LinearLayout 中。顶部和底部的“横幅”被赋予 layout_weight="0"
而内容区域(您提供的代码)的 layout_weight
设置为 1
。因此,顶部和底部横幅占据固定的空间,内容占据剩余空间。
关于Android:布置一堆简单的盒子?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18722493/
我正在努力实现以下目标, 假设我有字符串: ( z ) ( A ( z ) ( A ( z ) ( A ( z ) ( A ( z ) ( A ) ) ) ) ) 我想编写一个正则
给定: 1 2 3 4 5 6
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
大家好,我卡颂。 Svelte问世很久了,一直想写一篇好懂的原理分析文章,拖了这么久终于写了。 本文会围绕一张流程图和两个Demo讲解,正确的食用方式是用电脑打开本文,跟着流程图、Demo一
身份证为15位或者18位,15位的全为数字,18位的前17位为数字,最后一位为数字或者大写字母”X“。 与之匹配的正则表达式: ?
我们先来最简单的,网页的登录窗口; 不过开始之前,大家先下载jquery的插件 本人习惯用了vs2008来做网页了,先添加一个空白页 这是最简单的的做法。。。先在body里面插入 <
1、MySQL自带的压力测试工具 Mysqlslap mysqlslap是mysql自带的基准测试工具,该工具查询数据,语法简单,灵活容易使用.该工具可以模拟多个客户端同时并发的向服务器发出
前言 今天大姚给大家分享一款.NET开源(MIT License)、免费、简单、实用的数据库文档(字典)生成工具,该工具支持CHM、Word、Excel、PDF、Html、XML、Markdown等
Go语言语法类似于C语言,因此熟悉C语言及其派生语言( C++、 C#、Objective-C 等)的人都会迅速熟悉这门语言。 C语言的有些语法会让代码可读性降低甚至发生歧义。Go语言在C语言的
我正在使用快速将 mkv 转换为 mp4 ffmpeg 命令 ffmpeg -i test.mkv -vcodec copy -acodec copy new.mp4 但不适用于任何 mkv 文件,当
我想计算我的工作簿中的工作表数量,然后从总数中减去特定的工作表。我错过了什么?这给了我一个对象错误: wsCount = ThisWorkbook.Sheets.Count - ThisWorkboo
我有一个 perl 文件,用于查看文件夹中是否存在 ini。如果是,它会从中读取,如果不是,它会根据我为它制作的模板创建一个。 我在 ini 部分使用 Config::Simple。 我的问题是,如果
尝试让一个 ViewController 通过标准 Cocoa 通知与另一个 ViewController 进行通信。 编写了一个简单的测试用例。在我最初的 VC 中,我将以下内容添加到 viewDi
我正在绘制高程剖面图,显示沿路径的高程增益/损失,类似于下面的: Sample Elevation Profile with hand-placed labels http://img38.image
嗨,所以我需要做的是最终让 regStart 和 regPage 根据点击事件交替可见性,我不太担心编写 JavaScript 函数,但我根本无法让我的 regPage 首先隐藏。这是我的代码。请简单
我有一个非常简单的程序来测量一个函数花费了多少时间。 #include #include #include struct Foo { void addSample(uint64_t s)
我需要为 JavaScript 制作简单的 C# BitConverter。我做了一个简单的BitConverter class BitConverter{ constructor(){} GetBy
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我是 Simple.Data 的新手。但我很难找到如何进行“分组依据”。 我想要的是非常基本的。 表格看起来像: +________+ | cards | +________+ | id |
我现在正在开发一个 JS UDF,它看起来遵循编码。 通常情况下,由于循环计数为 2,Alert Msg 会出现两次。我想要的是即使循环计数为 3,Alert Msg 也只会出现一次。任何想法都
我是一名优秀的程序员,十分优秀!