从代码中将layout_centerVertical设置为TableLayout
我正在 Activity.java 的 onCreate() 方法中创建一个新的 TableLayout。我研究了几种修改布局属性的方法,但没有找到任何东西:(
进一步解释我的意思:当您将视图或布局放置在RelativeLayout中时,您可以设置两个参数:layout_centerVertical和layout_centerHorizontal。将这两个属性设置为 true 会将布局放置在屏幕中间,
我希望有人可以帮助我,谢谢!
I'm creating a new TableLayout inside my onCreate() method on the Activity.java. I've researched the several methods to modify the properties of a Layout but I haven't found anything :(
Further explaining what I mean: When you place a view or layout inside a RelativeLayout, you can set two parameters: layout_centerVertical and layout_centerHorizontal. Setting these two attributes to true will place the layout in the middle of the screen.
I hope someone can help me. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您在TableRow 中插入视图时,您可以指定layout_gravity 和gravity。看一下这里: http://developer.android.com/reference/ android/widget/TableRow.LayoutParams.html
When you insert view inside TableRow you can specify layout_gravity and gravity. Take a look here: http://developer.android.com/reference/android/widget/TableRow.LayoutParams.html