我想为Android中的所有屏幕尺寸创建几何形状。 我为这种情况编写了代码。但是我的形状在其他屏幕尺寸上发生了变化。 我想创建following picture
之类的形状我的代码是:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<rotate android:fromDegrees="0">
<shape android:shape="rectangle">
<solid android:color="@color/colorPrimaryDark" />
</shape>
</rotate>
</item>
<item android:top="180dp" android:bottom="-100dp" android:left="-70dp" android:right="-50dp">
<rotate android:fromDegrees="6">
<shape android:shape="rectangle">
<solid android:color="@color/base_color6" />
</shape>
</rotate>
</item>
</layer-list>
答案 0 :(得分:1)
我这样做了,但是在不同的分辨率下会中断。由于视角的扭曲,这会导致主要的UI问题。为了解决这个问题,我创建一个具有该角度的 WEBP图片,并将其设置为背景。并在ConstraintLayout中使用group和barrier设置整个视图。现在,在各种分辨率的设备上都可以正常工作