我的程序运行正常,但是编译器显示这个错误。如何修复?
关于这一点在谷歌上找不到答案,我查了很多次。
活动_主要
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/mainLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<!-- username-->
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/username_TIL"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="100dp"
android:elevation="2dp">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/username_TIET"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:hint="@string/username" />
</com.google.android.material.textfield.TextInputLayout>
<!-- password-->
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/password_TIL"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="20dp"
android:layout_below="@id/username_TIL">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/password_TIET"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:hint="password"/>
</com.google.android.material.textfield.TextInputLayout>
<!-- confirmPassword-->
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/confirmPassword_TIL"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="20dp"
android:layout_below="@id/password_TIL">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/confirmPassword_TIET"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:hint="@string/confirm_password"/>
</com.google.android.material.textfield.TextInputLayout>
<!-- SignIn-->
<androidx.appcompat.widget.AppCompatButton
android:id="@+id/signIn_BTN"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:text="@string/sign_in"
android:textColor="@android:color/white"
app:cornerRadius="50dp"
android:elevation="2dp"
android:layout_below="@id/confirmPassword_TIL"
android:layout_marginTop="20dp"
android:layout_centerHorizontal="true"
android:background="@android:color/holo_blue_light"/>
</RelativeLayout>
MainActivity中没有任何内容-已初始化
清单文件也没有添加任何额外的内容。是否解释为什么会出现此错误。另外还显示了一个错误。
E/InputTransport: ro.sf.lcd_density must be defined as a build property
2条答案
按热度按时间tvz2xvvm1#
我有同样的问题,但我的是因为屏幕密度。您可能需要修改您的图像或图标大小,如果有在drawable文件夹,然后生成一个副本到以下目录。
更多信息请阅读here
qeeaahzv2#
要消除此错误消息,请将以下行添加到设备上
/system
文件夹中的build.prop
文件:这将显示密度设置为160 dpi,即lowest among currently supported devices。您可以调整它以匹配您设备的特定密度。
**注意:**您需要具有设备的root访问权限才能编辑
build.prop
文件。由于这可能会导致某些设备出现问题,因此在进行任何更改之前,请先备份原始文件。