android xml形状,android – 使用XML的箭头矩形形状
如果您正在寻找这样的东西,请尝试以下代码..

>在drawable文件夹中创建一个xml arrow_shape.
android:pivotX="-40%" android:pivotY="87%" >
>在drawable文件夹中创建一个xml rectangle_shape.
>在主xml文件中
xmlns: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">
android:id="@+id/arrow"
android:layout_width="30dp"
android:layout_height="30dp"
android:background="@drawable/arrow_shape"
android:rotation="270" />
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" />
魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。
更多推荐


所有评论(0)