- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经找到了如何使用 Shape
背景创建圆形 ImageButtons,并且我已经找到了如何通过将宽度设置为 0dp 并将权重设置为 1 来在 LinearLayout 中均匀间隔按钮。但我不能不要把两者结合起来,所以要么圆形按钮的间距不均匀
看起来额外的空间是在内部按钮而不是边缘。如何让 LinearLayout
将新的空白空间分配给边距而不是 View ?
这是给我上面第二张图片的布局
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageButton
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
app:srcCompat="@drawable/ic_add_black_24dp"
android:background="@drawable/rounded"/>
<ImageButton
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
app:srcCompat="@drawable/ic_add_black_24dp"
android:background="@drawable/rounded"/>
<ImageButton
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
app:srcCompat="@drawable/ic_add_black_24dp"
android:background="@drawable/rounded"/>
</LinearLayout>
这是背景
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
<solid android:color="#33DDFF" />
<corners android:radius="4dp"/>
</shape>
最佳答案
我找到的一个解决方案是在按钮周围和按钮之间使用空的 Space
,并让它们占用额外的空间
<Space
android:layout_width="0dp"
android:layout_height="1dp"
android:layout_weight="1" >
</Space>
我必须移除实际按钮的重量并将宽度设置为 wrap_content
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/ic_add_black_24dp"
android:background="@drawable/rounded"
android:contentDescription="@string/speak_button_desc"/>
关于android - 如何使用 LinearLayout 均匀间隔圆形 ImageButtons,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50458792/
我需要在半径R的圆内生成一个均匀随机点。 我意识到,通过在区间 [0 ... 2π) 中选择均匀随机的角度,并在区间 (0 ... R) 中选择均匀随机的半径,我最终会得到更多的点朝向中心,因为对于两
我想在一个正方形内生成 N 个点(均匀地)。我怎样才能做到这一点? 最佳答案 非常酷的问题,比我想象的要困难得多,但这就是想法。有关于 n 边形的论文,但我只会做正方形。因此,圆的均匀分布是一个常见问
考虑以下示例: import itertools import numpy as np a = np.arange(0,5) b = np.arange(0,3) c = np.arange(0,7)
SQL Server 将一组值分成 5 组,每组的 sum(count) 应该均匀分布。 表仅包含 2 列 rid 和 count。 create table t1(rid int, count in
我有以下简单的 HTML。 A B C 和 CSS: ul { width: 100%; display: flex; flex-direction:
我是一名优秀的程序员,十分优秀!