如何在颤振小部件中使用可绘制(或等效)作为背景

Posted

技术标签:

【中文标题】如何在颤振小部件中使用可绘制(或等效)作为背景【英文标题】:How to use drawable (or equivalent) as background in an flutter widget 【发布时间】:2022-01-14 14:24:50 【问题描述】:

我是一名 android 开发人员,我开始学习 Flutter。为了更好地理解这个框架,我正在尝试转换现有的应用程序。我正在尝试转换以下片段:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/container"
    android:layout_
    android:layout_
    android:background="@drawable/home_background"
    android:paddingLeft="@dimen/fragment_horizontal_margin"
    android:paddingTop="@dimen/fragment_vertical_margin"
    android:paddingRight="@dimen/fragment_horizontal_margin"
    android:paddingBottom="@dimen/fragment_vertical_margin"
    tools:context=".ui.login.LoginFragment">

    <EditText
        android:id="@+id/fragment_login_username"
        style="@android:style/Widget.AutoCompleteTextView"
        android:layout_
        android:layout_
        android:layout_marginStart="24dp"
        android:layout_marginTop="16dp"
        android:layout_marginEnd="24dp"
        android:background="@color/white"
        android:hint="@string/prompt_username"
        android:inputType="text"
        android:padding="4dp"
        android:selectAllOnFocus="true"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/baseUrl" />

    <EditText
        android:id="@+id/fragment_login_password"
        android:layout_
        android:layout_
        android:layout_marginStart="24dp"
        android:layout_marginTop="8dp"
        android:layout_marginEnd="24dp"
        android:background="@color/white"
        android:hint="@string/prompt_password"
        android:imeActionLabel="@string/action_sign_in_short"
        android:imeOptions="actionDone"
        android:inputType="textPassword"
        android:padding="4dp"
        android:selectAllOnFocus="true"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/fragment_login_username" />

    <Button
        android:id="@+id/fragment_login_login"
        android:layout_
        android:layout_
        android:layout_gravity="start"
        android:layout_marginStart="48dp"
        android:layout_marginEnd="48dp"
        android:layout_marginBottom="64dp"
        android:enabled="false"
        android:text="@string/action_sign_in"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent" />

    <ProgressBar
        android:id="@+id/fragment_login_loading"
        android:layout_
        android:layout_
        android:layout_gravity="center"
        android:layout_marginBottom="64dp"
        android:visibility="gone"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        tools:visibility="visible" />

    <ImageView
        android:id="@+id/imageView4"
        android:layout_
        android:layout_
        android:layout_marginTop="48dp"
        android:src="@drawable/ic_lock_outline_primary_24dp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:tint="@color/white" />

    <TextView
        android:id="@+id/textView2"
        android:layout_
        android:layout_
        android:text="@string/login_button"
        android:textAppearance="@style/TextAppearance.AppCompat.Display3"
        android:textColor="@color/white"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/imageView4" />

    <TextView
        android:id="@+id/baseUrl"
        android:layout_
        android:layout_
        tools:text="http://localhost"
        android:textColor="@color/white"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/textView2" />

    <ImageView
        android:id="@+id/login_refresh_backend_url"
        android:layout_
        android:layout_
        android:layout_marginStart="16dp"
        android:src="@drawable/ic_refresh_24dp"
        app:layout_constraintBottom_toBottomOf="@+id/baseUrl"
        app:layout_constraintStart_toEndOf="@+id/baseUrl"
        app:layout_constraintTop_toBottomOf="@+id/textView2"
        app:tint="@color/white" />

</androidx.constraintlayout.widget.ConstraintLayout>

如您所见,ConstraintLayout 使用矢量图像作为背景。

<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:
    android:
    android:viewportHeight="700"
    android:viewportWidth="700">
    <path
        android:pathData="M0,0L700,0L700,400Q350,550,0,400"
        android:strokeColor="@color/primary_color"
        android:strokeWidth="1"
        android:fillColor="@color/primary_color"/>
</vector>

在我的应用程序的 Flutter 实现中,我想继续使用矢量图形,因为它是可扩展的。

有没有办法在 Flutter 小部件中使用矢量图形作为背景?

有没有办法自动将现有的 XML 布局转换为 Flutter 小部件树?

提前谢谢你。

【问题讨论】:

【参考方案1】:

您应该使用Flutter Inspector 开发工具。哪一个有助于将小部件树可视化为 XML 矢量图形。

如何从 android studio 访问颤振检查器?

View > Tool Window > Flutter Inspector;否则,请查看您的右侧面板

更多信息,您可以阅读此article

【讨论】:

问题是我是否可以像在 Android 原生开发中那样为 Flutter 的小部件使用矢量背景,以及是否有办法将现有布局(在 xml Android wasy 中)转换为 Flutter 的小部件树。我不需要使用 Flutter Inspector。 据我所知没有转换器。但是您可以使用 pub.dev/packages/xml_layout 之类的包来可视化 XML

以上是关于如何在颤振小部件中使用可绘制(或等效)作为背景的主要内容,如果未能解决你的问题,请参考以下文章

如何创建自定义颤振 sdk 小部件,重建颤振和使用新的小部件

颤振显示裁剪的小部件

如何暗示颤振小部件是可滚动的?

如何在颤振应用程序之上覆盖小部件?

Magento 2 创建 Widget

在颤振中制作可重复使用的小部件时需要帮助