当前位置:   article > 正文

andriod的几种布局_andriodk页面布局

andriodk页面布局
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="horizontal" >
  6. <!--LinearLayout线性布局
  7. vertical垂直排列
  8. horizontal水平排列
  9. android:layout_gravity="center"
  10. 给线性布局里面的控件所添加的属性
  11. -->
  12. <Button
  13. android:layout_width="wrap_content"
  14. android:layout_height="wrap_content"
  15. android:layout_gravity="center"
  16. android:text="登录" />
  17. <Button
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:layout_gravity="center"
  21. android:text="注册" />
  22. </LinearLayout>
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent" >
  5. <!--
  6. RelativeLayout相对布局
  7. android:layout_centerInParent="true"水平垂直居中
  8. android:layout_certerVertical="true"垂直居中
  9. android:layout_centerHorizontal="true"水平居中
  10. 控件在某控件的右方此属性写在哪个个控件
  11. 就指代此控件相对于另一个
  12. android:layout_above="@id/login"
  13. android:layout_below="@id/login"
  14. android:layout_toLeftOf="@id/login"
  15. android:layout_toRightOf="@id/login"
  16. -->
  17. <Button
  18. android:id="@+id/login"
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:layout_centerInParent="true"
  22. android:text="登录" />
  23. <Button
  24. android:id="@+id/register"
  25. android:layout_width="wrap_content"
  26. android:layout_height="wrap_content"
  27. android:layout_centerInParent="true"
  28. android:layout_above="@id/login"
  29. android:text="注册" />
  30. </RelativeLayout>


声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号