android中listview项的边框

android中listview项的边框,第1张

概述我想设置Edittext的边框和listview的项目,如图所示: 我的xml代码如下:           <LinearLayout android:background="#BDD6E0" android:layout_height="wrap_content" android:layout_width="match_parent" 我想设置Edittext的边框和ListvIEw的项目,如图所示:

我的xml代码如下:

<linearLayout        androID:background="#BDD6E0"        androID:layout_height="wrap_content"        androID:layout_wIDth="match_parent"        androID:orIEntation="vertical"  >    </linearLayout>    <linearLayout        androID:background="#BDD6E0"        androID:layout_height="wrap_content"        androID:layout_wIDth="match_parent"        androID:orIEntation="vertical"  >        <TextVIEw            androID:ID="@+ID/textVIEw1"            androID:layout_wIDth="match_parent"            androID:layout_height="wrap_content"            androID:layout_weight="1"            androID:text="Search"            androID:textcolor="#000000"            androID:background="#FFFFFF"            androID:textAppearance="?androID:attr/textAppearanceLarge" />        <EditText            androID:ID="@+ID/search_pat_edit"            androID:layout_wIDth="match_parent"            androID:layout_height="wrap_content"             androID:singleline="true"            androID:textcolor="#000000"            androID:layout_weight="4">        </EditText>     </linearLayout>    <linearLayout        androID:background="#c0c0c0"        androID:layout_height="0dp"        androID:layout_wIDth="match_parent"        androID:layout_weight="6" >            <ListVIEw            androID:ID="@+ID/ListVIEw1"            androID:layout_wIDth="match_parent"            androID:layout_height="wrap_content"            androID:background="#FFFFFF"            androID:layout_weight="1" >            </ListVIEw>    </linearLayout></linearLayout>

如何在ListvIEw项目中绘制边框?

解决方法 列表视图的背景
<?xml version="1.0" enCoding="utf-8"?><shape xmlns:androID="http://schemas.androID.com/apk/res/androID"androID:shape="rectangle">    <stroke androID:wIDth="1dip" androID:color="@color/edt_focused" /></shape>

并将属性添加到ListvIEw

androID:divIDer="@drawable/List_divIDer" androID:divIDerHeight="1px"
总结

以上是内存溢出为你收集整理的android中listview项的边框全部内容,希望文章能够帮你解决android中listview项的边框所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1137777.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存