gpt4 book ai didi

Android:使用 xml 定义制作一个三角形按钮(可绘制)

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:06:41 25 4
gpt4 key购买 nike

我想通过使用 XML 定义使用按钮 (TextView) 创建它:

my image

在我的 Activity 布局中:

    <TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/button_arrow" <!-- I NEED IMPLEMENT THIS -->
android:clickable="true"
android:drawablePadding="7dp"
android:gravity="center"
android:drawableLeft="@drawable/music_cloud"
android:onClick="exportSong"
android:padding="20dp"
android:text="@string/export_upload"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="@color/dark_yellow_text_color"
android:textStyle="bold" />

我创建了几个帖子:

making-a-triangle-shape-using-xml-definitions

Android triangle (arrow) defined as an XML shape

Android - make an arrow shape with xml

我尝试修改了几个 XML 定义,但都不好。有没有一些简单的方法来实现这个形状?它也应该有一个透明的背景。

最佳答案

如果有人对此仍有疑问:

  1. xml:

    <item android:top="45dp">
    <shape>
    <size android:height="100dp" android:width="90dp"/>
    <solid android:color="@android:color/holo_orange_light" />
    </shape>
    </item>
    <item android:top="36dp" android:left="11dp">
    <rotate
    android:fromDegrees="45"
    android:toDegrees="0"
    android:pivotX="80%"
    android:pivotY="20%" >
    <shape>
    <size android:width="40dp"
    android:height="30dp"/>
    <stroke android:color="@android:color/holo_orange_light" android:width="1dp"/>
    <solid android:color="@android:color/holo_orange_light" />
    </shape>
    </rotate>
    </item>
    </layer-list>
  2. 覆盖 TextView 并在您的布局中使用它:

    public class CustomTextView extends TextView {

    private int mWidth;
    private int mHeight;


    public CustomTextView(Context context, AttributeSet attrs) {
    super(context, attrs);

    }

    @Override
    protected void onDraw(Canvas canvas) {

    super.onDraw(canvas);
    Paint mPaint = new Paint();
    int color = getResources().getColor(R.color.YourColor);

    mPaint.setColor(color);
    Path mPath = new Path();
    mPath.moveTo(.0f, this.getHeight());
    mPath.lineTo(0.8f * this.getWidth(), this.getHeight());
    mPath.lineTo(this.getWidth(), 0.5f * this.getHeight());
    mPath.lineTo(0.8f * this.getWidth(), .0f);
    mPath.lineTo(.0f, .0f);
    mPath.lineTo(.0f, this.getHeight());

    canvas.clipPath(mPath);
    canvas.drawPath(mPath,mPaint);


    }
    }

关于 xml 示例:有两个重叠的矩形。您必须经常使用这些值,这使得它很难在不同的 View 上使用。我认为在这种情况下使用自定义 View 是最佳解决方案。

关于Android:使用 xml 定义制作一个三角形按钮(可绘制),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28264101/

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