gpt4 book ai didi

android - 在 RelativeLayout 中从一个 Angular 到另一个 Angular 绘制对 Angular 线

转载 作者:行者123 更新时间:2023-11-28 11:59:26 25 4
gpt4 key购买 nike

我是 Android 开发的新手,我想在我的黄色 RelativeLayout 中从左下角到右上角画一条线。我添加了一个 layer-list - diagonal_line

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:top="300dp"
android:bottom="-300dp"
android:left="0dp"
android:right="-300dp">
<rotate
android:fromDegrees="-10"
android:pivotX="0%"
android:pivotY="100%" >
<shape
android:shape="line"
android:top="1dip" >
<stroke
android:width="1dip"
android:color="#000" />
</shape>
</rotate>
</item>

然后到样式

<style name="diagonalStyle">
<item name="android:background">@drawable/diagonal_line</item>
</style>

然后将它添加到我的RelativeLayout

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent"
style="@style/diagonalStyle"
android:background="#FFDC7F">

我的问题是,如果我添加颜色,则线条不会显示,如果没有颜色,线条会出现但不在正确的位置。也许这个问题是重复的,但请保持温和,我不知道我做错了什么。

最佳答案

你应该使用 VectorDrawable在黄色 RelativeLayout 内从左下角到右上角画线的路径。你的 diagonal_line.xml 应该是这样的(假设线条颜色是蓝色 #0000FF 并且线条宽度是 4):

<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="64dp"
android:width="64dp"
android:viewportHeight="600"
android:viewportWidth="600" >

<path
android:name="diagonal_line"
android:strokeColor="#0000FF"
android:strokeWidth="4"
android:pathData="M600, 0 l-600, 600z" />
</vector>

(绝对尺寸不重要,因为矢量将根据 RelativeLayout 大小重新缩放)。您的 styles.xml 应该包括部分

<style name="diagonalStyle">
<item name="android:background">@drawable/diagonal_line</item>
</style>

如您所写,如果您不能在 {your_layout}.xml 文件中使用 backgroundTint,您应该设置纯色背景(android:background ="#FFDC7F") 为您的 Relativelayout 并使用 diagonalStyle (style="@ style/diagonalStyle") 在上面。类似的东西:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFDC7F"
tools:context="{YOUR_CONTEXT}">

<View
android:layout_width="match_parent"
android:layout_height="match_parent"
style="@style/diagonalStyle" />

</RelativeLayout>

因此,你应该给出类似的东西:

Diagonal stroked layout

更多路径教程here .

关于android - 在 RelativeLayout 中从一个 Angular 到另一个 Angular 绘制对 Angular 线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48281022/

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