当前位置:   article > 正文

Android --- 交换两个布局

Android --- 交换两个布局

准备布局

exchange_out_layout

exchange_in_layout

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="vertical"
  7. android:layout_marginTop="20dp"
  8. tools:context=".fragment.addaccount.AddExchangeFragment">
  9. <LinearLayout
  10. android:id="@+id/exchange_out_layout"
  11. android:layout_width="match_parent"
  12. android:layout_height="50dp"
  13. android:gravity="center_vertical"
  14. android:background="@drawable/selec_tab"
  15. android:layout_marginRight="10dp"
  16. android:layout_marginLeft="10dp"
  17. android:paddingLeft="10dp"
  18. android:paddingRight="10dp"
  19. android:orientation="horizontal">
  20. <TextView
  21. android:id="@+id/change_out_tv"
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24. android:layout_weight="2"
  25. android:text="请选择转出账户" />
  26. <TextView
  27. android:id="@+id/change_out_money"
  28. android:layout_width="wrap_content"
  29. android:layout_height="wrap_content"
  30. android:layout_marginRight="5dp"
  31. android:text="¥10.00" />
  32. <TextView
  33. android:id="@+id/change_out_all"
  34. android:layout_width="wrap_content"
  35. android:layout_height="wrap_content"
  36. android:padding="4dp"
  37. android:background="@drawable/add_tab_background"
  38. android:text="全部转出" />
  39. </LinearLayout>
  40. <LinearLayout
  41. android:layout_width="match_parent"
  42. android:layout_height="wrap_content"
  43. android:layout_margin="20dp"
  44. android:orientation="horizontal">
  45. <ImageView
  46. android:id="@+id/exchange_icon"
  47. android:layout_width="20dp"
  48. android:layout_height="20dp"
  49. android:src="@drawable/exchange_down"/>
  50. </LinearLayout>
  51. <LinearLayout
  52. android:id="@+id/exchange_in_layout"
  53. android:layout_width="match_parent"
  54. android:layout_height="50dp"
  55. android:layout_marginLeft="10dp"
  56. android:layout_marginRight="10dp"
  57. android:background="@drawable/selec_tab"
  58. android:gravity="center_vertical"
  59. android:orientation="horizontal"
  60. android:paddingLeft="10dp"
  61. android:paddingRight="10dp">
  62. <TextView
  63. android:id="@+id/textView"
  64. android:layout_width="wrap_content"
  65. android:layout_height="wrap_content"
  66. android:layout_weight="2"
  67. android:text="请选择转入账户" />
  68. <TextView
  69. android:id="@+id/textView3"
  70. android:layout_width="wrap_content"
  71. android:layout_height="wrap_content"
  72. android:layout_marginRight="5dp"
  73. android:text="¥10.00" />
  74. <TextView
  75. android:id="@+id/textView6"
  76. android:layout_width="wrap_content"
  77. android:layout_height="wrap_content"
  78. android:background="@drawable/add_tab_background"
  79. android:padding="2dp"
  80. android:text="全部转出" />
  81. </LinearLayout>
  82. </LinearLayout>

设计点击方法

为图片设计一个点击方法

  1. exchange_icon = getView().findViewById(R.id.exchange_icon);
  2. exchange_icon.setOnClickListener(new View.OnClickListener() {
  3. @Override
  4. public void onClick(View view) {
  5. // 交换逻辑
  6. }
  7. });

交换逻辑:

1.获取父组件

parentLayout = (ViewGroup) linearLayout_out.getParent(); // 得到父容器

2.找到在父组件中,这两个子布局的位序

获取布局位序 --- int index1 = parentLayout.indexOfChild(linearLayout_out);

在Android中,ViewGroup(比如LinearLayout、RelativeLayout等)中的子View的顺序是由它们在ViewGroup中的索引(index)决定的。索引表示子View在ViewGroup中的位置,第一个子View的索引为0,依次递增。

在上述代码中,通过调用parentLayout.indexOfChild(view)方法可以获取指定子View在其父ViewGroup中的索引位置。这样做是为了根据不同的索引位置来调整子View的顺序,实现布局的交换或调整。 

3.在父组件中移除这两个子布局

删除布局 --- parentLayout.removeViewInLayout(linearLayout_in);

4. 再将这两个子布局添加到对方的位置上,通过比较两个索引的大小来确定需要交换的两个布局的顺序。

  • 如果index1 < index2,说明布局1在布局2之前,此时应先将布局1添加到parentLayout中,然后再将布局2添加到parentLayout中;
  • 如果index1 >= index2,说明布局1在布局2之后或者二者在同一个位置,此时应先将布局2添加到parentLayout中,然后再将布局1添加到parentLayout中。
  • 添加布局 --- parentLayout.addView(linearLayout_out, index2);
  • 刷新布局 --- parentLayout.requestLayout(); 
  1. exchange_icon.setOnClickListener(new View.OnClickListener() {
  2. @Override
  3. public void onClick(View view) {
  4. if (parentLayout != null && linearLayout_in != null && linearLayout_out != null) {
  5. int index1 = parentLayout.indexOfChild(linearLayout_out);
  6. int index2 = parentLayout.indexOfChild(linearLayout_in);
  7. parentLayout.removeViewInLayout(linearLayout_out);
  8. parentLayout.removeViewInLayout(linearLayout_in);
  9. if(index1 < index2) {
  10. parentLayout.addView(linearLayout_in, index1);
  11. parentLayout.addView(linearLayout_out, index2);
  12. } else {
  13. parentLayout.addView(linearLayout_out, index2);
  14. parentLayout.addView(linearLayout_in, index1);
  15. }
  16. parentLayout.requestLayout();
  17. }
  18. }
  19. });

效果:

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/670143
推荐阅读
相关标签
  

闽ICP备14008679号