添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
低调的登山鞋  ·  舒淇 ...·  1 月前    · 
道上混的创口贴  ·  CSS / ...·  4 月前    · 
爱玩的馒头  ·  Marp: Markdown ...·  5 月前    · 

android:orientation="horizontal" android:layout_width="match_parent"

android:layout_height="match_parent">

android:layout_width="0dp"

android:layout_height="wrap_content"

android:layout_weight="1"

android:visibility="invisible"/>

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="注册"

android:layout_width="0dp"

android:layout_height="wrap_content"

android:layout_weight="1"

android:visibility="invisible"/>

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="忘记密码"

android:layout_width="0dp"

android:layout_height="wrap_content"

android:layout_weight="1"

android:visibility="invisible"/>

效果如下:

按钮等宽平分

Android里面使用LinearLayout布局,然后直接使用了三个view,然偶设置其不可见(visibility="invisible"),但是占用当前的位置。最后设置每个layout里面的控件的weight为1,这样就保证了用两个按钮将屏幕等分。

2.按钮宽度不相等的实现:

android:orientation="horizontal" android:layout_width="match_parent"

android:layout_height="match_parent">

android:layout_width="0dp"

android:layout_height="wrap_content"

android:layout_weight="1"

android:visibility="invisible"/>

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="注册"

android:minWidth="0dp"

android:layout_width="0dp"

android:layout_height="wrap_content"

android:layout_weight="1"

android:visibility="invisible"/>

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="忘记密码"

android:minWidth="0dp"

android:layout_width="0dp"

android:layout_height="wrap_content"

android:layout_weight="1"

android:visibility="invisible"/>

效果如下:

android unequal

这里的代码和上面的大同小异,唯一的区别就是button设置了minWidth。

CSS+HTML的实现:

.container {

display: -webkit-box;

.container .tempDiv {

-webkit-box-flex:1;

运行效果如下:

html 实现

html这边比较简单,只是把关键代码列出来了。直接使用-webkit-box来设置,然后将每个tempDiv的-webkit-box-flex都设置为1即可。

因为比较简单,所以也没有分按钮width是否相等两种情况。

iOS中的实现

iOS实现如果单独做计算也是可以的。可以先将按钮的宽度相加,然后(屏幕宽度-按钮相加宽度)/3 得到间隙的大小,然后再将按钮按照计算结果进行计算放置即可。这里需要固定按钮的宽度,才能实现。这里有个精度损失问题,因为在Int和Float之间转换有损失。关键代码如下:

let interval = (screenWidth - CGFloat(forgetButtonWidth) - CGFloat(loginButtonWidth) )/3

loginButton.setTitle("登录", for: UIControlState.normal)

loginButton.setTitleColor(UIColor.white, for: UIControlState.normal)

loginButton.backgroundColor = UIColor.brown

loginButton.frame = CGRect.init(x: Int(interval), y: 100, width: loginButtonWidth, height: 40)

forgetPwdButton.setTitle("忘记密码", for: UIControlState.normal)

forgetPwdButton.setTitleColor(UIColor.white, for: UIControlState.normal)

forgetPwdButton.backgroundColor = UIColor.darkGray

forgetPwdButton.frame = CGRect.init(x: Int(interval)*2+loginButtonWidth, y: 100, width: forgetButtonWidth, height: 40)

self.view.addSubview(loginButton)

self.view.addSubview(forgetPwdButton)

严格来说,这里并没有将其平分为三份,不过如果不是太严谨的话可以当做平分。

上面的这种通过计算的方式适合于按钮等宽或者不等宽的情况进行平分。接下来看看另一种方式:Stack view分割。

先简单说一下Stack view。它在IOS中的体现就是UIStackView这个类,是iOS9新增的一个布局技术,可以用来进行多个控件的快速布局。具体的介绍就不多说了,不了解的可以参考这里。

通过StackView,可以快速地实现分割,关键代码如下:

loginButton.setTitle("登录", for: UIControlState.normal)

loginButton.setTitleColor(UIColor.white, for: UIControlState.normal)

loginButton.backgroundColor = UIColor.brown

forgetPwdButton.setTitle("忘记密码", for: UIControlState.normal)

forgetPwdButton.setTitleColor(UIColor.white, for: UIControlState.normal)

forgetPwdButton.backgroundColor = UIColor.darkGray

tempViewOne.backgroundColor = UIColor.clear

tempViewTwo.backgroundColor = UIColor.clear

tempViewThree.backgroundColor = UIColor.clear

stackView.addArrangedSubview(tempViewOne)

stackView.addArrangedSubview(forgetPwdButton)

stackView.addArrangedSubview(tempViewTwo)

stackView.addArrangedSubview(loginButton)

stackView.addArrangedSubview(tempViewThree)

//set vertical or horizontal

stackView.axis = UILayoutConstraintAxis.horizontal

stackView.distribution = UIStackViewDistribution.fillEqually

self.view.addSubview(stackView)

这里是用了三个临时的占位view,然后将他们和两个按钮都放到stackView里面,设置stackView的distribution为fillEqually。这样就实现了等分效果,这里需要注意:我们只需要对stack进行约束,然后其他的控件布局会由stack view自动管理。实现效果如下:

stack view handle

这样就实现了两个button把界面均分。

这里面设置的distribution是 fillEqually,也就是把stackview里面的控件都充满stackview,并且stackview的arranged view都是等宽的。

Question

1、还有其他的方式实现么?

如何用两个button等分屏幕宽度?问题引入现有一个小问题:如何使用两个按钮,然后将屏幕宽度评分?如图:实现最终效果图再进一步细节:如果按钮的宽度相等呢?不相等呢?看看人家的实现Android的实现1.按钮宽度相等的实现这里直接上布局文件(.xml)的代码:android:orientation="horizontal" android:layout_width="match_parent"and...
在RelativeLayout中 平分 两个 控件本文地址:http://blog.csdn.net/caroline_wendyRelativeLayout在 平分 时,需要使用一个基准,就是在中间放置一个参考,一个在左面,一个在右面;其中左右的 宽度 设置为 android :layout_width=“0dp",根据内容自动填充;如:<RelativeLayout xmlns: android ="htt
原文地址:http://pcq019.blog.163.com/blog/static/12460232320122155651430/ 在 Android 中,使用LinearLayout 布局 要实现控件 平分 屏幕 很简单,直接使用它的layout_weight属性即可实现。 但是在RelativeLayout 布局 中却没有提供类似的属性。 在网上查了一会,发现一老外提供了他的方法,想法挺
我的微信公众号: 如果你喜欢我的文章,欢迎关注我的微信公众号。今天给大家介绍的是一款可以动态变化的 按钮 ,如矩形变为圆形、圆形变为矩形、矩形先变为进度条然后再变为圆形,我们还是先看看效果图吧。 第一个 按钮 由矩形变为圆角矩形。 第二个 按钮 由矩形变为圆形。 第三个 按钮 由矩形变为进度条,进度条结束后变为圆形。在此声明一下,效果实现我这里并非原创,我也是在github上面看到此效果,然后阅读源码,