二进制XML文件第32行:您必须提供layout_height属性

时间:2019-06-21 06:36:33

标签: java android android-layout

我遇到这个xml问题。我已经检查了我的代码,并且我很确定所有的layout-height都已实现。

Promise.reject(error);

这是我的logcat:

<RelativeLayout 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"
xmlns:wheel="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".activity.PostPreview">
<ImageView
    android:id="@+id/iv_viewPhotoFull"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="16dp"
        android:src="@drawable/ic_back" />

    <TextView
        android:id="@+id/tvCaption"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@id/relativePostDetails"
        android:layout_marginLeft="16dp"
        android:layout_marginRight="16dp"
        android:layout_marginBottom="16dp"
        android:fontFamily="@font/baloo_thambi"
        android:text="Sample photo label"
        android:textSize="16sp" />

    <RelativeLayout
        android:id="@+id/relativePostDetails"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@id/relativeComment"
        android:layout_marginBottom="16dp">

        <LinearLayout
            android:id="@+id/linear_likesCount"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="16dp"
            android:background="@drawable/rounded_corner1"
            android:backgroundTint="@color/colorPrimaryLight"
            android:orientation="horizontal"
            android:paddingLeft="8dp"
            android:paddingRight="8dp">

            <com.androidapp.instasocial.ui.CompatTextView
                android:id="@+id/like_icon"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center_vertical"
                android:gravity="center"
                android:text="@string/like_icon"
                android:textColor="@color/black"
                android:textSize="@dimen/feed_options_icon_size"
                android:visibility="visible"
                wheel:fontPath="@string/font_fontawesome" />

            <com.androidapp.instasocial.ui.CompatTextView
                android:id="@+id/tv_likecount"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:layout_marginStart="6dp"
                android:layout_marginLeft="6dp"
                android:fontFamily="@font/baloo_thambi"
                android:gravity="center_vertical"
                android:text="32"
                android:textColor="@color/txtColor"
                android:textSize="10sp" />
        </LinearLayout>

        <LinearLayout
            android:id="@+id/linear_viewsCount"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="16dp"
            android:layout_toRightOf="@id/linear_likesCount"
            android:background="@drawable/rounded_corner1"
            android:backgroundTint="@color/colorPrimaryLight"
            android:orientation="horizontal"
            android:paddingLeft="8dp"
            android:paddingRight="8dp">

            <ImageView
                android:id="@+id/ic_Seen"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center_vertical"
                android:gravity="center"
                android:tint="@color/txtColor"
                android:visibility="visible"
                app:srcCompat="@drawable/ic_visibility_mt" />

            <com.androidapp.instasocial.ui.CompatTextView
                android:id="@+id/tv_viewsCount"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:layout_marginStart="6dp"
                android:layout_marginLeft="6dp"
                android:fontFamily="@font/baloo_thambi"
                android:gravity="center_vertical"
                android:text="32"
                android:textColor="@color/txtColor"
                android:textSize="10sp" />
        </LinearLayout>

        <LinearLayout
            android:id="@+id/linear_commentsCount"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="16dp"
            android:layout_toRightOf="@id/linear_viewsCount"
            android:background="@drawable/rounded_corner1"
            android:backgroundTint="@color/pink_200"
            android:orientation="horizontal"
            android:paddingLeft="8dp"
            android:paddingRight="8dp">

            <ImageView
                android:id="@+id/ic_Comments"
                android:layout_width="24dp"
                android:layout_height="24dp"
                android:layout_gravity="center_vertical"
                android:gravity="center"
                android:padding="2dp"
                android:tint="@color/white"
                android:visibility="visible"
                app:srcCompat="@drawable/ic_comment_bubble" />

            <com.androidapp.instasocial.ui.CompatTextView
                android:id="@+id/tv_commentsCount"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:layout_marginStart="6dp"
                android:layout_marginLeft="6dp"
                android:fontFamily="@font/baloo_thambi"
                android:gravity="center_vertical"
                android:text="32"
                android:textColor="@color/white"
                android:textSize="10sp" />
        </LinearLayout>

        <LinearLayout
            android:id="@+id/linearActions"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentEnd="true"
            android:layout_alignParentRight="true"
            android:layout_marginRight="16dp"
            android:orientation="horizontal">

            <ImageView
                android:id="@+id/iv_sendMessage"
                android:layout_width="32dp"
                android:layout_height="32dp"
                android:layout_gravity="center"
                android:layout_marginRight="8dp"
                android:rotation="320"
                android:tint="@color/white"
                app:srcCompat="@drawable/ic_send_mt" />

            <com.androidapp.instasocial.ui.CompatTextView
                android:id="@+id/iv_like_icon"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center_vertical"
                android:layout_marginRight="8dp"
                android:gravity="center"
                android:text="@string/unlike_icon"
                android:textColor="@color/white"
                android:textSize="28sp"
                android:visibility="visible"
                wheel:fontPath="@string/font_fontawesome" />

            <de.hdodenhof.circleimageview.CircleImageView
                android:id="@+id/ivClickReward"
                android:layout_width="32dp"
                android:layout_height="32dp"
                android:layout_marginRight="8dp"
                android:src="@mipmap/ruon_new_app_icon"
                android:visibility="visible" />

        </LinearLayout>

    </RelativeLayout>

    <RelativeLayout
        android:id="@+id/relativeComment"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_marginLeft="16dp"
        android:layout_marginRight="16dp"
        android:layout_marginBottom="16dp">

        <EditText
            android:id="@+id/edt_comment"
            style="@style/Transparent"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/rounded_black_outline"
            android:hint="@string/add_a_new_comment"
            android:paddingLeft="20dp"
            android:paddingTop="16dp"
            android:paddingRight="24dp"
            android:paddingBottom="16dp" />

        <ImageView
            android:id="@+id/iv_sendComment"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentEnd="true"
            android:layout_alignParentRight="true"
            android:layout_centerVertical="true"
            android:layout_marginEnd="16dp"
            android:layout_marginRight="16dp"
            android:rotation="320"
            android:tint="@color/txtColor"
            app:srcCompat="@drawable/ic_send_mt" />

    </RelativeLayout>
</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

在以下位置找不到属性“ ProgressIndeterminate”的资源标识符 软件包“ cn.pedant.sweetalert”

如果出现上述错误,则enter link description here