图像未显示在android xml文件中

时间:2016-03-21 12:29:52

标签: android xml android-layout

我正在设计如下图所示,我有一个线性布局,里面我正在添加两个图像,在每个图像上我添加文本视图。但是如下所示代码图像甚至不出现在xml文件中(我在drawable文件夹中添加了图片),我在这里缺少什么?请帮助我..

enter image description here

.xml文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#C5C5C5">
    <TextView
        android:text="Desing view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/textView1" />
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="300dp"
        android:id="@+id/linearLayout1"
        android:background="#c5c5c5">
        <ImageView
            android:src="@drawable/img"
            android:layout_width="match_parent"
            android:layout_height="100dp"
            android:id="@+id/imageView1" />
        <ImageView
            android:src="@drawable/img"
            android:layout_width="match_parent"
            android:layout_height="100dp"
            android:id="@+id/imageView2" />
    </LinearLayout>
</LinearLayout>

0 个答案:

没有答案