提问人:CoffeeBean 提问时间:10/1/2023 更新时间:10/1/2023 访问量:28
如何将 material3 组件添加到 XML 设计调色板?
How to add material3 components to the XML design palette?
问:
因此,我在这里遵循了有关如何将 material3 添加到 gradle 的指南,并且我能够获得颜色 XML.但是,当我转到布局 XML 时,调色板没有任何 material3 的组件(例如它们的按钮、文本视图...... 如何将组件添加到调色板中以便可以拖放它们?
按照指南,我在 settings.gradle.kts 中添加了对 material3 的依赖
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "Proj1"
include(":app")
我将资源添加到build.gradle.kts中
plugins {
id("com.android.application")
}
android {
namespace = "com.example.proj1"
compileSdk = 33
defaultConfig {
applicationId = "com.example.proj1"
minSdk = 27
targetSdk = 33
versionCode = 1
versionName = "1.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
isMinifyEnabled = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
}
dependencies {
implementation("androidx.appcompat:appcompat:1.6.1")
implementation("com.google.android.material:material:1.11.0-alpha03")
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
}
但没有任何改变
我尝试用“MaterialButton”替换XML上的“button”组件,但是我到处都是错误,没有任何效果,所以我只是回到“button”
我还尝试向按钮组件添加样式属性,但按钮没有提升,它只是改变了颜色style="@style/Widget.Material3.Button.ElevatedButton"
答: 暂无答案
评论