android – 使用XML的箭头矩形形状

android – 使用XML的箭头矩形形状,第1张

概述如何使用shape和xml实现这种形状的Departments标头而没有9-patch? 我的意思是左边带箭头矩形. 我的代码片段: <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <item android:bottom="1px" android:left= 如何使用shape和xml实现这种形状的Departments标头而没有9-patch?

我的意思是左边带箭头的矩形.

我的代码片段:

<@R_454_3419@ xmlns:androID="http://schemas.androID.com/apk/res/androID">    <item        androID:bottom="1px"        androID:left="@dimen/edittext_border"        androID:right="@dimen/edittext_border"        androID:top="@dimen/edittext_border">        <shape androID:shape="rectangle">            <stroke                androID:wIDth="@dimen/edittext_border_wIDth"                androID:color="@color/menu_divIDer" />            <solID androID:color="@color/background" />            <corners androID:radius="4dp" />        </shape>    </item></@R_454_3419@>
解决方法 如果您正在寻找这样的东西,请尝试以下代码..

>在drawable文件夹中创建一个xml arrow_shape.

<?xml version="1.0" enCoding="utf-8"?> <@R_454_3419@ xmlns:androID="http://schemas.androID.com/apk/res/androID">    <item> <rotate androID:fromdegrees="45" androID:todegrees="45"     androID:pivotX="-40%" androID:pivotY="87%" >    <shape androID:shape="rectangle" >        <stroke androID:color="#c6802a" androID:wIDth="10dp"/>        <solID androID:color="#c6802a" />    </shape></rotate></item></@R_454_3419@>

>在drawable文件夹中创建一个xml rectangle_shape.

<?xml version="1.0" enCoding="utf-8"?><@R_454_3419@ xmlns:androID="http://schemas.androID.com/apk/res/androID" ><item> <shape androID:shape="rectangle">    <solID androID:color="#B2E3FA" /> </shape></item>

>在主xml文件中

<linearLayoutxmlns:androID="http://schemas.androID.com/apk/res/androID"xmlns:tools="http://schemas.androID.com/tools"xmlns:app="http://schemas.androID.com/apk/res-auto"androID:layout_wIDth="match_parent"androID:layout_height="match_parent"androID:orIEntation="horizontal"androID:gravity="center"app:layout_behavior="@string/appbar_scrolling_vIEw_behavior"tools:context="com.example.stpl.myapplication.MainActivity"><relativeLayout    androID:ID="@+ID/arrow"    androID:layout_wIDth="30dp"    androID:layout_height="30dp"    androID:background="@drawable/arrow_shape"    androID:rotation="270" />  <relativeLayout   androID:ID="@+ID/rectangle"   androID:layout_wIDth="150dp"   androID:layout_height="50dp"   androID:background="@drawable/rectangle_shape"   xmlns:androID="http://schemas.androID.com/apk/res/androID"   xmlns:androID="http://schemas.androID.com/tools" /></linearLayout>
总结

以上是内存溢出为你收集整理的android – 使用XML的箭头矩形形状全部内容,希望文章能够帮你解决android – 使用XML的箭头矩形形状所遇到的程序开发问题。

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存