更改设置为 ConstraintLayout 背景的 Nine-Patch 的颜色
Change color of Nine-Patch that's set as the background of a ConstraintLayout
非常疯狂的问题:
我正在尝试更改设置为 ConstraintLayout
背景的九色补丁的颜色。 XML 中的 android:backgroundTint
工作正常,但这仅受 Android 5.0+ 支持。使用 app:backgroundTint
而不是 android:backgroundTint
不会改变颜色。
我的XML:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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="29dp"
android:background="@drawable/round"
android:backgroundTint="@android:color/darker_gray">
</android.support.constraint.ConstraintLayout>
有谁知道另一种改变颜色的方法吗? 感谢任何帮助。
您可以像这样添加框架布局:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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="29dp"
android:background="@drawable/round"
android:backgroundTint="@android:color/darker_gray">
<FrameLayout
android:id="@+id/framelayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/whitebackground" // change the color as desired
/>
</android.support.constraint.ConstraintLayout>
我认为这会解决您的问题。否则你可以在 Github.
上找到一个好的图书馆
我刚找到答案:
在onCreate()
方法中:
View line = findViewById(R.id.line);
ColorStateList tint = ColorStateList.valueOf(ContextCompat.getColor(this, android.R.color.holo_blue_light));
ViewCompat.setBackgroundTintList(line, tint);
感谢@azizbekian 的建议。
非常疯狂的问题:
我正在尝试更改设置为 ConstraintLayout
背景的九色补丁的颜色。 XML 中的 android:backgroundTint
工作正常,但这仅受 Android 5.0+ 支持。使用 app:backgroundTint
而不是 android:backgroundTint
不会改变颜色。
我的XML:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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="29dp"
android:background="@drawable/round"
android:backgroundTint="@android:color/darker_gray">
</android.support.constraint.ConstraintLayout>
有谁知道另一种改变颜色的方法吗? 感谢任何帮助。
您可以像这样添加框架布局:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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="29dp"
android:background="@drawable/round"
android:backgroundTint="@android:color/darker_gray">
<FrameLayout
android:id="@+id/framelayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/whitebackground" // change the color as desired
/>
</android.support.constraint.ConstraintLayout>
我认为这会解决您的问题。否则你可以在 Github.
上找到一个好的图书馆我刚找到答案:
在onCreate()
方法中:
View line = findViewById(R.id.line);
ColorStateList tint = ColorStateList.valueOf(ContextCompat.getColor(this, android.R.color.holo_blue_light));
ViewCompat.setBackgroundTintList(line, tint);
感谢@azizbekian 的建议。