创建项目后修改的文件图片
- image of themes.xml
- image of colors.xml
- 错误图像
- AndroidManifest.xml的图片
我的activity_main.xml中的代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
android:gravity="center"
android:orientation="vertical"
android:background="@drawable/ic_bg"
tools:context=".MainActivity">
<TextView
android:id="@+id/tv_app_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="30dp"
android:textStyle="bold"
android:textColor="@color/white"
android:textSize="25sp"
android:gravity="center"
android:text="QuizBuzz"/>
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="20dp"
android:layout_marginEnd="20dp"
app:cardBackgroundColor="@color/white"
app:cardCornerRadius="8dp"
app:cardElevation="10dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:textColor="#363A43"
android:textSize="16sp"
android:text="Welcome"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:textColor="#7A8089"
android:textSize="18sp"
android:text="Please enter your name"
/>
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox">
<androidx.appcompat.widget.AppCompatEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#363A43"
android:textColorHint="#7A8089"
android:hint="Name"/>
</com.google.android.material.textfield.TextInputLayout>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:layout_marginStart="16dp"
android:layout_marginEnd="16dp"
android:background="@color/purple_500"
android:text="Start">
</Button>
</LinearLayout>
</androidx.cardview.widget.CardView>
</LinearLayout>
当我点击运行按钮,我得到一个错误(错误的图像-从第一个列表)
我是新的android开发。所以我不明白到底发生了什么。请帮我找出问题所在。
如果你正在使用Jetpack Compose,那么只需删除旧的主题文件并添加一个需要此内容的文件:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.YourProject" parent="android:Theme.Material.Light.NoActionBar">
<item name="android:statusBarColor">@color/purple_700</item>
</style>
</resources>
和设置主题也在AndroidManifest文件。
试试这个:
将这些缺失的颜色添加到colors.xml文件中:
<item name="colorPrimaryVariant">@color/purple_700</item>
<item name="colorOnPrimary">@color/black</item>
<item name="colorSecondaryVariant">@color/teal_200</item>
<item name="colorOnSecondary">@color/black</item>
我在使用android.bp从源代码构建整个项目时遇到了同样的问题。最后在android.bp:
中添加android_app{
...
static_libs: [
...
"com.google.android.material_material",
...
]
}
,然后错误消失。