错误

java.lang.RuntimeException:无法启动活动ComponentInfo {com.example.vigneshbaskar.concavechat / com.example.vigneshbaskar.concavechat.MainActivity}:java.lang.RuntimeException:TaskDescription的原色应该是不透明的

爪哇

package com.example.vigneshbaskar.concavechat;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
}


XML文件

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    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"
    tools:context="com.example.vigneshbaskar.concavechat.MainActivity">

</RelativeLayout>


表现

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.vigneshbaskar.concavechat">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name="com.example.vigneshbaskar.concavechat.MainActivity"
            android:theme="@style/FullTheme">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

最佳答案

您不能在原色中使用Alpha,而只是使原色不透明。转到res>values>colors,并用此#3F51B5(蓝色)替换您的颜色主代码;

关于android - TaskDescription的原色应该是不透明的,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43438588/

10-12 20:36