“未知的drawble资源”错误

时间:2017-11-21 17:57:24

标签: android

1)我在使用时看到“未知的drawble资源”错误:"android:src="@drawble/party"" 完整的代码如下所示。我的“party.jpg”文件位于res / drawble文件夹下会出现什么问题?

2)我也看到"android:layout_alignRight="8dp"出现错误“这里有什么问题?

<?xml version="1.0" encoding="utf-8"?>
<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"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="park.hannah.myapplication.MainActivity">

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawble/party" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="From. Hyunji"
        android:padding="8dp"/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Happy Tuesday!!"
        android:layout_alignRight="8dp"

        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />


</RelativeLayout>

2 个答案:

答案 0 :(得分:1)

您有语法错误

@ drawable / party而不是@ drawble / party

使用此

 <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/party" />
  

我也看到&#34; android:layout_alignRight =&#34; 8dp&#34;&#34;什么是   问题在这里?

您必须根据ID

将视图与另一个视图对齐

建议

你也可以使用重力而不是android:layout_alignRight用于不是复杂的视图布局

尝试使用LinearLayout轻松舒适不复杂的视图布局

答案 1 :(得分:0)

将您的drawable从* .jpg重命名为* .png