android – TextViews,它们之间有分隔线

前端之家收集整理的这篇文章主要介绍了android – TextViews,它们之间有分隔线前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在 android studio中重新编写以下布局:

因为我在android的东西是新的,我首先尝试使用LinearLayout,并认为这可能是不可能的.现在我正在尝试使用RelativeLayout我已经用颜色创建了这个块:

  1. <RelativeLayout
  2. android:layout_width="fill_parent"
  3. android:layout_height="80dp"
  4. android:background="@color/red_top">
  5. </RelativeLayout>

现在我想问一下,如何将它分开,就像在顶部的图像1条和同一布局的底部的2条所示,我怎样才能放置相同的边框?

解决方法

您可以使用以下xml代码执行此操作:
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:id="@+id/custom_toast_layout"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="vertical" >
  7.  
  8. <TextView
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:background="#CD96CD"
  12. android:text="TEXT" />
  13.  
  14. <View
  15. android:layout_width="match_parent"
  16. android:layout_height="1dp"
  17. android:background="#000000" />
  18.  
  19. <LinearLayout
  20. android:layout_width="match_parent"
  21. android:layout_height="wrap_content"
  22. android:orientation="horizontal" >
  23.  
  24. <TextView
  25. android:layout_width="match_parent"
  26. android:layout_height="wrap_content"
  27. android:layout_weight="1"
  28. android:gravity="center"
  29. android:background="#CD96CD"
  30. android:text="TEXT" />
  31.  
  32. <View
  33. android:layout_width="1dp"
  34. android:layout_height="fill_parent"
  35. android:background="#000000" />
  36.  
  37. <TextView
  38. android:layout_width="match_parent"
  39. android:layout_height="wrap_content"
  40. android:layout_weight="1"
  41. android:gravity="center"
  42. android:background="#CD96CD"
  43. android:text="TEXT" />
  44. </LinearLayout>
  45.  
  46. </LinearLayout>

猜你在找的Android相关文章