Android布局中实现圆角边框

设置corners_bg.xml

设置边框圆角可以在drawable-mdpi目录里定义一个xml:

[html] view plaincopy

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <shape xmlns:android="http://schemas.android.com/apk/res/android">
  3. <solid android:color="#FFFFFF" />
  4. <corners android:topLeftRadius="10dp"
  5. android:topRightRadius="10dp"
  6. android:bottomRightRadius="10dp"
  7. android:bottomLeftRadius="10dp"/>
  8. </shape>

解释:

solid的表示填充颜色,为了简单,这里用的是白色。

而corners则是表示圆角,注意的是这里bottomRightRadius是左下角而不是右下角,bottomLeftRadius右下角。

上面的效果也可以像下面一样设置,如下:

[html] view plaincopy

  1. <corners android:radius="5dp" />

引用corners_bg.xml

如果想引用这个xml,只需要@drawable/corners_bg.xml即可:

[html] view plaincopy

  1. android:background="@drawable/corners_bg"

应用范例

[html] view plaincopy

  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:background="#E1E0DE"
  6. android:orientation="vertical" >
  7. <TextView
  8. android:id="@+id/textView1"
  9. android:layout_width="match_parent"
  10. android:layout_height="50dp"
  11. android:background="#2B3439"
  12. android:gravity="center"
  13. android:text="发现"
  14. android:textColor="#FFFFFF"
  15. android:textSize="20sp" />
  16. <LinearLayout
  17. android:id="@+id/login_div"
  18. android:layout_width="fill_parent"
  19. android:layout_height="50dp"
  20. android:layout_margin="10dp"
  21. android:background="@drawable/corners_bg"
  22. android:gravity="center_vertical"
  23. android:padding="10dp" >
  24. <ImageView
  25. android:id="@+id/imageView1"
  26. android:layout_width="wrap_content"
  27. android:layout_height="wrap_content"
  28. android:src="@drawable/find_more_friend_photograph_icon" />
  29. <TextView
  30. android:id="@+id/textView2"
  31. android:layout_width="wrap_content"
  32. android:layout_height="wrap_content"
  33. android:layout_marginLeft="14dp"
  34. android:text="朋友圈"
  35. android:textColor="#000"
  36. android:textSize="18sp" />
  37. </LinearLayout>
  38. <LinearLayout
  39. android:layout_width="fill_parent"
  40. android:layout_height="101dp"
  41. android:layout_margin="10dp"
  42. android:background="@drawable/corners_bg"
  43. android:orientation="vertical"
  44. android:padding="10dp" >
  45. <LinearLayout
  46. android:layout_width="wrap_content"
  47. android:layout_height="50dp" >
  48. <ImageView
  49. android:layout_width="wrap_content"
  50. android:layout_height="wrap_content"
  51. android:src="@drawable/find_more_friend_scan" />
  52. <TextView
  53. android:layout_width="wrap_content"
  54. android:layout_height="wrap_content"
  55. android:layout_marginLeft="14dp"
  56. android:text="扫一扫"
  57. android:textColor="#000"
  58. android:textSize="18sp" />
  59. </LinearLayout>
  60. <LinearLayout
  61. android:layout_width="wrap_content"
  62. android:layout_height="50dp"
  63. android:layout_centerVertical="true" >
  64. <ImageView
  65. android:layout_width="wrap_content"
  66. android:layout_height="wrap_content"
  67. android:src="@drawable/come_from_shake" />
  68. <TextView
  69. android:layout_width="wrap_content"
  70. android:layout_height="wrap_content"
  71. android:layout_marginLeft="14dp"
  72. android:text="摇一摇"
  73. android:textColor="#000"
  74. android:textSize="18sp" />
  75. </LinearLayout>
  76. </LinearLayout>
  77. <LinearLayout
  78. android:layout_width="fill_parent"
  79. android:layout_height="101dp"
  80. android:layout_margin="10dp"
  81. android:background="@drawable/corners_bg"
  82. android:orientation="vertical"
  83. android:padding="10dp" >
  84. <LinearLayout
  85. android:layout_width="wrap_content"
  86. android:layout_height="50dp" >
  87. <ImageView
  88. android:layout_width="wrap_content"
  89. android:layout_height="wrap_content"
  90. android:src="@drawable/find_more_friend_near_icon" />
  91. <TextView
  92. android:layout_width="wrap_content"
  93. android:layout_height="wrap_content"
  94. android:layout_marginLeft="14dp"
  95. android:text="附近的人"
  96. android:textColor="#000"
  97. android:textSize="18sp" />
  98. </LinearLayout>
  99. <LinearLayout
  100. android:layout_width="wrap_content"
  101. android:layout_height="50dp"
  102. android:layout_centerVertical="true" >
  103. <ImageView
  104. android:layout_width="wrap_content"
  105. android:layout_height="wrap_content"
  106. android:src="@drawable/come_from_bottle" />
  107. <TextView
  108. android:layout_width="wrap_content"
  109. android:layout_height="wrap_content"
  110. android:layout_marginLeft="14dp"
  111. android:text="漂流瓶"
  112. android:textColor="#000"
  113. android:textSize="18sp" />
  114. </LinearLayout>
  115. </LinearLayout>
  116. <LinearLayout
  117. android:id="@+id/login_div"
  118. android:layout_width="fill_parent"
  119. android:layout_height="50dp"
  120. android:layout_margin="10dp"
  121. android:background="@drawable/corners_bg"
  122. android:gravity="center_vertical"
  123. android:padding="10dp" >
  124. <ImageView
  125. android:id="@+id/imageView1"
  126. android:layout_width="wrap_content"
  127. android:layout_height="wrap_content"
  128. android:src="@drawable/more_game" />
  129. <TextView
  130. android:id="@+id/textView2"
  131. android:layout_width="wrap_content"
  132. android:layout_height="wrap_content"
  133. android:layout_marginLeft="14dp"
  134. android:text="游戏中心"
  135. android:textColor="#000"
  136. android:textSize="18sp" />
  137. </LinearLayout>
  138. </LinearLayout>

效果图

时间: 2024-11-07 13:41:52

Android布局中实现圆角边框的相关文章

Android 布局中的include标签使用

Android 布局中的include标签使用 最近在布局时,有好多页面都是有共同特点的,比如标题:一个同样的样式! 如下图所示: 如果给每个页面都单独的写一个标题的布局那就太麻烦了,如果能写一个标题布局,其它页面重用该多好! 这个时候,<include> 就隆重登场了! 写一个标题的布局 title.xml: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:an

android 布局中 layout_gravity、gravity、orientation、layout_weight

线性布局中,有 4 个及其重要的参数,直接决定元素的布局和位置,这四个参数是 android:layout_gravity ( 是本元素相对于父元素的重力方向 ) android:gravity (是本元素所有子元素的重力方向) android:orientation (线性布局以列或行来显示内部子元素) android:layout_weight (线性布局内子元素对未占用空间[水平或垂直]分配权重值,其值越小,权重越大. 前提是子元素 设置了 android:layout_width = "

android 布局中 layout_gravity、gravity、orientation、layout_weight【转】

线性布局中,有 4 个及其重要的参数,直接决定元素的布局和位置,这四个参数是 android:layout_gravity  ( 是本元素相对于父元素的重力方向 ) android:gravity        (是本元素所有子元素的重力方向) android:orientation    (线性布局以列或行来显示内部子元素) android:layout_weight  (线性布局内子元素对未占用空间[水平或垂直]分配权重值,其值越小,权重越大. 前提是子元素 设置了 android:layo

安卓开发技巧一:深入理解Android布局中Layout_weight的属性

今天开始将要为大家介绍一些安卓开发过程将要用到的一些技巧,这些技巧全部来自网络搜集,或者自己在企业做项目的时候总结出来的,利用这些技巧将会对我们开发带来非常方便的便捷性. 先来记录一下这一段时间的技巧目录,方便大家以后方便查阅(大概有不到三十种的技巧总结,大概每周分享两个技巧,笔者将尽可能写的详细,以及提供实例源码): 安卓开发技巧一:深入理解Android布局中Layout_weight的属性 安卓开发技巧二:自定义日志工具类 安卓开发技巧三:Activity的启动模式 安卓开发技巧四:分享一

android布局中使用include及需注意点

在android布局中,使用include,将另一个xml文件引入,可作为布局的一部分,但在使用include时,需注意以下问题: 一.使用include引入 如现有标题栏布局block_header.xml,代码如下: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/layout_header" android:layout

Android布局中 android:layout_gravity=&quot;bottom&quot;为何不起作用?

在android布局时我们有时会需要将位于LinearLayout布局中的控件放在布局底部,或者是同时想将几个控件底部对齐,此时我们自然会想到使用 android:layout_gravity="bottom" 将控件放在该线性布局底部,但是,但是这样是行不通的,这个问题今天也困扰了我很长时间,以为是自己其他地方布局搞错了或者其他地方搞错了才会出现这种情况,最后没办法查资料才发现以下规律: 在 LinearLayout布局时: 当总布局为水平布局时 即当 android:orienta

Android 布局中 如何使控件居中

首先要分两种不同情况,在两种不同的布局方式下:LinearLayout 和RelativeLayout 1. LinearLayout a). android:layout_gravity="center_horizontal"表示该布局在父布局里水平居中,此时其父布局必须拥有android:orientation="vertical"属性: b). android:layout_gravity="center_vertical"表示该布局在父布

android布局中显示隐藏动画

android 在布局中提供属性,能简单的添加动画效果,如下: <LinearLayout ... animateLayoutChanges="true" ... /> 当对布局中的view添加删除,隐藏或显示, 都会有一个淡入淡出,和位移动画. 除了在XML布局文件中使用animateLayoutChanges 属性.也可以创建 LayoutTransition 对象通过 setLayoutTransition() 方法设置进去.源码如下: private ViewGro

【转】在Android布局中使用include和merge标签

内容转自:http://fengweipeng1208.blog.163.com/blog/static/21277318020138229754135/ 在我们开发android布局时,经常会有很多的布局是相同的,这个时候我们可以通过<include/>和<merge/>标签实现将复杂的布局包含在需要的布局中,减少重复代码的编写. 1. 创建一个可以重复使用的布局: 如下代码描述在应用中每个acitivity都出现的顶栏titlebar.xml 1 <FrameLayout