在XML中绘制深灰色线会导致运行时错误

时间:2017-08-14 11:53:39

标签: android view

每当我运行应用程序时,运行时错误都会导致应用程序崩溃。这是我的日志错误:

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.android.practiceset2/com.example.android.practiceset2.MainActivity}: android.view.InflateException: Binary XML file line #63: Attempt to invoke virtual method 'boolean java.lang.String.equals(java.lang.Object)' on a null object reference

如果我在下面给出的XML文件中使用1dp宽度的空白深灰色视图在两个视图之间绘制一条灰线,则只会出现错误:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity">

    <android.support.v7.widget.LinearLayoutCompat
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="0.5"
        android:orientation="horizontal">


        <android.support.v7.widget.LinearLayoutCompat
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:orientation="vertical">

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center_horizontal"
                android:padding="4dp"
                android:text="Team A"
                android:textSize="45sp" />

            <TextView
                android:id="@+id/scoreA_text_view"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center_horizontal"
                android:padding="4dp"
                android:text="0"
                android:textSize="45sp" />

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_margin="8dp"
                android:gravity="center_horizontal"
                android:onClick="score3A"
                android:text="+3 Points" />

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_margin="8dp"
                android:gravity="center_horizontal"
                android:onClick="score2A"
                android:text="+2 Points" />

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_margin="8dp"
                android:gravity="center_horizontal"
                android:onClick="freeThrowA"
                android:text="Free Throw" />
        </android.support.v7.widget.LinearLayoutCompat>

        <view
            android:layout_width="1dp"
            android:layout_height="match_parent"
            android:background="@android:color/darker_gray" />

        <android.support.v7.widget.LinearLayoutCompat
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:orientation="vertical">

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center_horizontal"
                android:padding="4dp"
                android:text="Team B"
                android:textSize="45sp" />

            <TextView
                android:id="@+id/scoreB_text_view"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center_horizontal"
                android:padding="4dp"
                android:text="0"
                android:textSize="45sp" />

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_margin="8dp"
                android:gravity="center_horizontal"
                android:onClick="score3B"
                android:text="+3 Points" />

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_margin="8dp"
                android:gravity="center_horizontal"
                android:onClick="score2B"
                android:text="+2 Points" />

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_margin="8dp"
                android:gravity="center_horizontal"
                android:onClick="freeThrowB"
                android:text="Free Throw" />
        </android.support.v7.widget.LinearLayoutCompat>
    </android.support.v7.widget.LinearLayoutCompat>

    <Button
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="65dp"
        android:layout_weight="1"
        android:gravity="center_horizontal"
        android:onClick="reset"
        android:text="Reset" />
</LinearLayout>

我无法理解绘制此行是如何导致错误的。这是正确的方法吗?如果没有,请提出解决方法。

3 个答案:

答案 0 :(得分:2)

在您的XML中,您使用了小写的视图。你应该使用View而不是view。

          <View
            android:layout_width="1dp"
            android:layout_height="match_parent"
            android:background="@android:color/darker_gray" />

希望有所帮助:)

答案 1 :(得分:1)

尝试将其设为<View而不是<view

答案 2 :(得分:0)

使用此代码它运作良好

ngFor