gpt4 book ai didi

android - 左侧 LinearLayout 内部的边框

转载 作者:行者123 更新时间:2023-11-30 01:56:17 26 4
gpt4 key购买 nike

如何在左侧的以下 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>

谢谢。

最佳答案

好的。我以前不明白。

因此,要在 drawable 文件夹中创建一个包含以下内容的 xml 文件。给 xml 命名“layout_mainBG”

<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>

这符合您的需求。

如果你想要更复杂的东西

并且在你的 layout_main xml 文件的 <LinearLayout> 下标记添加这个

android:baground = "@drawable/layout_mainBG

有关详细信息,请参阅此站点。即使它是对话 fragment 也是一样。

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>

这会给你一个黑色边框。

关于android - 左侧 LinearLayout 内部的边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32163335/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com