gpt4 book ai didi

android - 如何自动导入 xml 中的 "xmlns:app="http....pk/res-auto"?或如何创建包含此 "xmlns:app"方案的模板 xml?

转载 作者:行者123 更新时间:2023-12-05 00:16:02 26 4
gpt4 key购买 nike

众所周知,ConstraintLayout是目前android开发中最流行、最高效的布局。但是要使用它的属性,您必须先导入“xmlns:app”。当您需要使用 ConstraintLayout 创建许多 xml 文件时,这非常烦人。如何使用此方案(“xmlns:app”)自动创建 xml 文件?我需要一个模板而不是手动导入它。

enter image description here

最佳答案

我认为最好的方法是在 Android Studio 中使用 Live Templates。它允许您创建代码 fragment 并在几秒钟内将它们添加到代码中:

https://medium.com/google-developers/writing-more-code-by-writing-less-code-with-android-studio-live-templates-244f648d17c7

这里是 XML 的例子:

https://riggaroo.dev/create-live-templates-android-studio/

所以你真正能做的就是把这个:

<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:layout_width="match_parent"
android:layout_height="match_parent">

</androidx.constraintlayout.widget.ConstraintLayout>

在 Android Studio -> Preferences -> Live Templates

enter image description here

关于android - 如何自动导入 xml 中的 "xmlns:app="http....pk/res-auto"?或如何创建包含此 "xmlns:app"方案的模板 xml?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62651292/

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