我有一个android项目,主要是android studio中的模板应用。这是activity_main.xml
:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<Button
android:id="@+id/gameStartButton"
android:text="Start"
android:fontFamily="serif"
android:textSize="30sp"
android:textColor="@color/colorAccent"
android:background="@color/colorPrimaryDark"
android:layout_width="match_parent"
android:layout_margin="10dp"
android:layout_height="@string/mainMenuItemWidth"/>
</android.support.constraint.ConstraintLayout>
这是MainActivity.java
:
包com.example.saga.test;
import android.app.Activity;
import android.os.Bundle;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
当我启动该应用程序时,它会因以下原因而崩溃:
08-26 17:57:36.256 5868-5868/com.example.saga.test E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.example.saga.test, PID: 5868
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.saga.test/com.example.saga.test.MainActivity}: java.lang.RuntimeException: Binary XML file line #0: You must supply a layout_height attribute.
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2534)
您可以看到,实际上我为约束布局和按钮都提供了layout_height
属性,为什么我会收到此错误?
答案 0 :(得分:1)
不能将字符串值用于layout_height。将值放在dimens.xml中,并使用
引用该值android:layout_height="@dimen/mainMenuItemWidth"
答案 1 :(得分:1)
根本原因::您正在为属性android:layout_height
使用字符串。预期值为integer
或dimen
值。
解决方案::在res/values
文件夹中创建一个名为dimens.xml
的新文件,然后在其中添加以下部分。
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="mainMenuItemWidth">20dp</dimen>
</resources>
然后在您的xml文件中。
<Button
android:id="@+id/gameStartButton"
android:text="Start"
android:fontFamily="serif"
android:textSize="30sp"
android:textColor="@color/colorAccent"
android:background="@color/colorPrimaryDark"
android:layout_width="match_parent"
android:layout_margin="10dp"
android:layout_height="@dimen/mainMenuItemWidth"/>
答案 2 :(得分:-1)
由于android:layout_height="@string/mainMenuItemWidth"
不接受字符串类型值,导致应用程序崩溃,原因是layout_height
。
在dimen
文件中创建一个名称为mainMenuItemWidth
的值
将android:layout_height="@string/mainMenuItemWidth"
更改为android:layout_height="@dimen/mainMenuItemWidth"
希望它对您有用。