当前位置:   article > 正文

Android子父布局之间的渲染悖论_android 布局先渲染子布局还是父布局

android 布局先渲染子布局还是父布局
  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="100px"
  5. android:padding="5dp" >
  6. <ImageView
  7. android:id="@+id/iv_ic"
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content"
  10. android:src="@drawable/ic_launcher" />
  11. <TextView
  12. android:id="@+id/tv_title"
  13. android:layout_width="wrap_content"
  14. android:layout_height="wrap_content"
  15. android:layout_marginLeft="8dp"
  16. android:layout_toRightOf="@id/iv_ic"
  17. android:singleLine="true"
  18. android:text="AAAAAAAAA"
  19. android:textColor="#000000"
  20. android:textSize="15sp" />
  21. <TextView
  22. android:id="@+id/tv_content"
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:layout_below="@id/tv_title"
  26. android:layout_marginLeft="10dp"
  27. android:layout_toRightOf="@id/iv_ic"
  28. android:maxLines="2"
  29. android:text="BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB" />
  30. <TextView
  31. android:id="@+id/tv_comment"
  32. android:layout_width="wrap_content"
  33. android:layout_height="wrap_content"
  34. android:layout_alignParentBottom="true"
  35. android:layout_alignParentRight="true"
  36. android:text="跟贴"
  37. android:textColor="#ff0000"
  38. android:textSize="12sp" >
  39. </TextView>
  40. </RelativeLayout>

1. 父布局包裹内容是在确定所有子布局大小以及位置的前提下,进行渲染的

2. 控件的相对位置,是在父布局确定大小的前提下,才能确认位置

3. 解决方案:确认其中一方的高度的确认值即可





本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/一键难忘520/article/detail/944010
推荐阅读
相关标签
  

闽ICP备14008679号