这是我的布局顶部所需要的
这就是我实际拥有的
会有一个简单的选项,我现在还在计算.
可绘制圆角
<?xml version="1.0" enCoding="UTF-8"?><shape xmlns:androID="http://schemas.androID.com/apk/res/androID"> <solID androID:color="#E9E9E9"/> <stroke androID:wIDth="4dip" androID:color="#B1BCBE" /> <corners androID:radius="10dip"/> <padding androID:left="0dip" androID:top="0dip" androID:right="0dip" androID:bottom="0dip" /></shape>
布局
<ScrollVIEw xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:ID="@+ID/home_root" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent" androID:background="@drawable/rounded_layout" > <linearLayout androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:orIEntation="vertical" > <TextVIEw androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:text="@string/filter_Title" androID:background="@androID:color/black" androID:textcolor="@androID:color/white" androID:padding="10dp" androID:textSize="20sp" /> <linearLayout androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:orIEntation="vertical" androID:padding="15dp" > <Spinner androID:ID="@+ID/sp_intorno_a_me_proximity" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:layout_margintop="10dp" androID:spinnerMode="dialog" /> . . . <EditText androID:ID="@+ID/et_intorno_a_me_username" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:layout_margintop="10dp" androID:textSize="20sp" androID:digits="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMnopQRSTUVWXYZ1234567890" androID:hint="@string/agentNumber" /> <linearLayout androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:orIEntation="horizontal" androID:layout_margintop="20dp" androID:layout_marginBottom="10dp" androID:weightSum="1" > <button androID:ID="@+ID/btn_intorno_a_me_close_search" androID:layout_wIDth="0dp" androID:layout_height="wrap_content" androID:layout_weight="0.5" androID:text="@string/annulla" androID:textcolor="@androID:color/white" /> <button androID:ID="@+ID/btn_intorno_a_me_search" androID:layout_wIDth="0dp" androID:layout_height="wrap_content" androID:layout_weight="0.5" androID:text="@string/find" /> </linearLayout> </linearLayout> </linearLayout></ScrollVIEw>
我已经尝试将drawable移动到第一个linearLayout子项.
如何防止文本视图隐藏圆角?
解决方法:
在TextVIEw中尝试使用类似的东西作为背景.
使用以下数据为TextVIEw创建一个新的drawable .xml
<?xml version="1.0" enCoding="UTF-8"?><shape xmlns:androID="http://schemas.androID.com/apk/res/androID"> <solID androID:color="#000000"/> <stroke androID:wIDth="4dip" androID:color="#B1BCBE" /> <corners androID:topLefTradius="10dip" androID:topRighTradius="10dip" androID:bottomLefTradius="0dip" androID:bottomrighTradius="0dip" /> <padding androID:left="0dip" androID:top="0dip" androID:right="0dip" androID:bottom="0dip" /></shape>
总结 以上是内存溢出为你收集整理的android – 圆角线性布局角由fill_parent TextView重叠全部内容,希望文章能够帮你解决android – 圆角线性布局角由fill_parent TextView重叠所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)