如何在左侧的以下LinearLayout内部添加边框,使其宽5dp
并适合LinearLayout的整个高度? LinearLayout的高度是动态的,这意味着有时它可能50dp
高而其他时间60dp
高等等。
这是我目前的布局:
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/image"
android:background="@color/bg"
android:padding="15dp">
<TextView
android:id="@+id/title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:textSize="14dp"
android:maxLines="2"
android:singleLine="false"
android:ellipsize="end"
/>
<TextView
android:id="@+id/desc"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/title"
android:textSize="10dp"
android:singleLine="true"
android:ellipsize="end"
/>
</LinearLayout>
感谢。
答案 0 :(得分:1)
好的。我之前没有理解。
这样做可以在drawable文件夹中创建一个包含以下内容的xml文件。命名xml &#34; layout_mainBG&#34;
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<stroke android:width="5dp" android:color="@android:color/background_dark" />
<solid android:color="#800000c0"/> </shape>
这符合您的需求。
如果你想要更复杂的东西
在<LinearLayout>
标记下的layout_main xml文件中添加此
android:baground = "@drawable/layout_mainBG
有关详情,请参阅此网站。即使它是对话片段,它也是一样的。
Create background of Popup Window with custom shape
如果您希望一方只更改layout_mainBG 到
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="#000000" />
</shape>
</item>
<item android:left="5dp">
<shape android:shape="rectangle">
<solid android:color="@color/bg" />
</shape>
</item>
</layer-list>
这会给你一个黑色边框。