android.support.constraint.ConstraintLayout错误

时间:2017-07-28 14:02:45

标签: java android android-tablayout android-constraintlayout

错误说我需要在我的代码中验证android:layout_height / width,并且它没有android:layout_height / width所需的元素。 Java新手,所以任何帮助将不胜感激。

我的MainActivity代码是这样的:

    package com.example.name.myapplication;

    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);
        }

我的activity_main.xml代码在这里:

    <?xml version="1.0" encoding="utf-8"?>
    <android.support.constraint.ConstraintLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
       tools:context="com.example.name.myapplication.MainActivity">
       <TableLayout 
           xmlns:android="http://schemas.android.com/apk/res/android"
           android:id="@+id/table_main"
           android:layout_marginTop="48dp"
           android:layout_width="match_parent"
           android:layout_height="48dp"
           android:stretchColumns="1">

           <TableRow>
               <TextView
                   android:layout_column="1"
                   android:text="@string/name"
                   android:padding="3dip" />

               <TextView
                   android:text="@string/address"
                   android:padding="3dip" />

               <TextView
                   android:text="@string/phone"
                   android:gravity="right"
                   android:padding="3dip" />

               <TextView
                   android:text="@string/fax"
                   android:gravity="right"
                   android:padding="3dip"
                   android:layout_height="45dp"/>

          </TableRow>

    </TableLayout>

</android.support.constraint.ConstraintLayout>

1 个答案:

答案 0 :(得分:0)

看起来您没有为Constraint Layout添加任何高度或宽度限制。因此,您的应用程序不知道进行此布局的高度或宽度。

尝试在Constraint Layout下添加这些:

android:layout_width="match_parent"
android:layout_height="match_parent"

所以你的代码看起来像这样:

<android.support.constraint.ConstraintLayout
    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"
    tools:context="com.example.name.myapplication.MainActivity">