gpt4 book ai didi

android相对布局后台崩溃

转载 作者:行者123 更新时间:2023-11-29 15:26:23 26 4
gpt4 key购买 nike

好吧,我有一个 RelativeLayout

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="true"
android:background="@drawable/my_shape_normal"
android:onClick="startTestTillError">

my_shape_normal 定义为

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="#FFFFFF00"
android:endColor="#80FFFFFF"
android:angle="120"/>
<padding android:left="7dp"
android:top="7dp"
android:right="7dp"
android:bottom="7dp" />
<corners android:radius="8dp" />
</shape>

加载时引发异常:RelativeLayout 行的 android.view.InflateException。如果我删除“android:background”,一切都会完美无缺。my_shape_normal 有什么问题?

最佳答案

当我剪切并粘贴您的 XML 时,我的 LogCat 读取:

Caused by: org.xmlpull.v1.XmlPullParserException: Binary XML file line #6
<gradient> tag requires 'angle' attribute to be a multiple of 45

所以我更新了您的形状 XML 以反射(reflect)此要求:

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"
android:padding="7dp" >

<gradient
android:angle="135"
android:endColor="#80FFFFFF"
android:startColor="#FFFFFF00" />

<corners android:radius="8dp" />

</shape>

请注意,我还将相同的 padding 元素组合到 shape 中的一个属性中。

关于android相对布局后台崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12360212/

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