I want to put a layout in the center of the screen.
相关问题
- How can I create this custom Bottom Navigation on
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
- Listening to outgoing sms not working android
- How to create Circular view on android wear?
相关文章
- android开发 怎么把图片放入drawable的文件夹下
- android上如何获取/storage/emulated/下的文件列表
- androidStudio有个箭头不认识
- SQLite不能创建表
- Windows - Android SDK manager not listing any plat
- Animate Recycler View grid when number of columns
- Why is the app closing suddenly without showing an
- Android OverlayItem.setMarker(): Change the marker
You can apply a centering to any View, including a Layout, by using the XML attribute android:layout_gravity". You probably want to give it the value "center".
You can find a reference of possible values for this option here: http://developer.android.com/reference/android/widget/LinearLayout.LayoutParams.html#attr_android:layout_gravity
Use ConstraintLayout. Here is an example that will center the view according to the width and height of the parent screen:
You might need to change your gradle to get the latest version of ConstraintLayout:
Add android:layout_centerInParent="true" to element which you want to center in the RelativeLayout
It will work for that code sometimes need both properties
Step #1: Wrap whatever it is you want centered on the screen in a full-screen
RelativeLayout
.Step #2: Give that child view (the one, which you want centered inside the
RelativeLayout
) theandroid:layout_centerInParent="true"
attribute.