android – layout_weight与它应该的相反

前端之家收集整理的这篇文章主要介绍了android – layout_weight与它应该的相反前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在下面的xml中,我试图绘制一个包含两个块的布局(LinearLayout和TextView).我希望LinearLayout比TextView大5倍.这个xml与我期望的完全相反,TextView占用的空间比LinearLayout多5倍.请注意,我已将两个元素的宽度设置为0dp,这是一个常见的疏忽.
  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:paddingLeft="15dp"
  6. android:paddingRight="15dp"
  7. android:layout_gravity="center_vertical"
  8. android:weightSum="6"
  9. android:orientation="horizontal" >
  10.  
  11. <LinearLayout
  12. android:layout_width="0dip"
  13. android:layout_height="wrap_content"
  14. android:orientation="vertical"
  15. android:layout_weight="5" >
  16.  
  17. <TextView
  18. android:id="@+id/result_title_textview"
  19. android:layout_width="match_parent"
  20. android:layout_height="wrap_content"
  21. android:fontFamily="Arial"
  22. android:textColor="#222222"
  23. android:textSize="14sp"/>
  24.  
  25. <TextView
  26. android:id="@+id/result_info_textview"
  27. android:layout_width="match_parent"
  28. android:layout_height="wrap_content"
  29. android:fontFamily="Arial"
  30. android:textColor="#777777"
  31. android:textSize="12sp" />
  32. </LinearLayout>
  33.  
  34. <TextView
  35. android:id="@+id/result_distance_textview"
  36. android:layout_width="0dip"
  37. android:layout_height="wrap_content"
  38. android:layout_weight="1"
  39. android:fontFamily="Arial"
  40. android:textColor="#ffffffff"
  41. android:textSize="14sp" />
  42.  
  43. </LinearLayout>

编辑:此布局实际上是列表项,包含在此列表中:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/results_list_fragment_layout"
  4. android:layout_width="wrap_content"
  5. android:layout_height="wrap_content"
  6. android:orientation="vertical"
  7. android:paddingTop="15dp" >
  8.  
  9. <ListView
  10. android:id="@+id/search_results_list"
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:background="@drawable/scrollable_content_background"
  14. android:divider="@drawable/listview_divider"
  15. android:dividerHeight="1dp" >
  16. </ListView>
  17.  
  18. </LinearLayout>

解决方法

我也遇到了同样的问题,解决方法是改变:

>如果父LinearLayout具有orientation =“horizo​​ntal”,则子视图的宽度为0dp;>如果父LinearLayout具有orientation =“vertical”,则子视图的高度为0dp.

猜你在找的Android相关文章