我是靠谱客的博主 爱撒娇龙猫,最近开发中收集的这篇文章主要介绍android四个按钮平分,如何用两个button等分屏幕宽度?,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

如何用两个button等分屏幕宽度?

问题引入

现有一个小问题:如何使用两个按钮,然后将屏幕宽度评分?如图:

4177c6614dad7b9abf20b5635c4022f5.png

实现最终效果图

再进一步细节:如果按钮的宽度相等呢?不相等呢?

看看人家的实现

Android的实现

1.按钮宽度相等的实现

这里直接上布局文件(.xml)的代码:

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"/>

效果如下:

e82ee6fe40e5c550e0eaaf862635128c.png

按钮等宽平分

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"/>

效果如下:

56cc49ad8e6d80eafcff2189155c81d6.png

android unequal

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

CSS+HTML的实现:

.container {

display: -webkit-box;

}

.container .tempDiv {

-webkit-box-flex:1;

}

登录

忘记密码

运行效果如下:

b7601c2bdd086a62db9e0f4849d63c8c.png

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自动管理。实现效果如下:

b5b29fc15b9711ef62cd6dbf1b67d414.png

stack view handle

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

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

Question

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

最后

以上就是爱撒娇龙猫为你收集整理的android四个按钮平分,如何用两个button等分屏幕宽度?的全部内容,希望文章能够帮你解决android四个按钮平分,如何用两个button等分屏幕宽度?所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部