作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下线性布局,用作表格单元格。我想添加到所选模板的右侧和底部边框。但现在我只能在右侧添加边框。
我怎样才能一次给选定的边添加边框?
非常感谢您的任何建议。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="60dp"
android:layout_height="80dp"
android:gravity="right"
android:background="@color/white"
android:orientation="horizontal" >
<LinearLayout
android:layout_width="wrap_content"
android:orientation="vertical"
android:layout_gravity="center_horizontal|center"
android:gravity="center_horizontal|center"
android:layout_marginRight="10dp"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/variable_type_first_column"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/heart"
android:layout_gravity="center_horizontal|center_vertical"
android:gravity="center"/>
<TextView
android:id="@android:id/text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Weight"
android:layout_below="@id/variable_type_first_column"
android:layout_gravity="center_horizontal|bottom"
android:gravity="center_horizontal|bottom"
android:textColor="@color/app_blue"
android:textAlignment="center"
android:textSize="12sp"/>
</LinearLayout>
<View
android:layout_width="1.5dip"
android:layout_height="match_parent"
android:layout_gravity="right"
android:foregroundGravity="right"
android:background="@drawable/separator_table_header_first" />
</LinearLayout>
最佳答案
在您的可绘制文件夹中创建可绘制文件。
<?xml version="1.0" encoding="utf-8"?>
<inset xmlns:android="http://schemas.android.com/apk/res/android"
android:insetBottom="5dp"
android:insetLeft="-7dp"
android:insetRight="5dp"
android:insetTop="-7dp">
<shape android:shape="rectangle">
<stroke
android:width="5dp"
android:color="#ff0000" />
<solid android:color="#00000000" />
</shape>
</inset>
并将其设置为线性布局的背景。
关于安卓布局 : How to add bottom and right border into linear layout together?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34005565/
我是一名优秀的程序员,十分优秀!