1

大家好,我是android新手,在我的项目要求中,我需要在相同位置创建两个LinearLayouts,稍后在Java代码中对其进行动画处理,出于测试目的,最初我在这些布局上插入了图像视图,之后我成功删除了图像视图和在相同的布局上插入了 EditTexts,但奇怪的前一个图像在执行后显示在一个线性布局上,而预览中没有显示

我测试了所有选项,例如清理项目,从设备卸载和重新安装 iam 得到同样的问题

 <?xml version="1.0" encoding="utf-8"?>
 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                 android:layout_width="fill_parent"
                 android:layout_height="fill_parent"
  >
 <Button 
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Animate Now"/>
 <LinearLayout
    android:id="@+id/image_list_fragment"
    android:layout_width="250dip"
    android:layout_below="@+id/button1"
    android:layout_height="200dip"
    android:background="#FF00FF"
    android:layout_centerInParent="true"
    >
    <EditText 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:hint="Please Enter some text here"
        android:singleLine="false"
        />

</LinearLayout>


 <LinearLayout
    android:layout_width="200dip"
    android:layout_height="300dip"
    android:orientation="vertical"
    android:layout_below="@+id/button1"
    android:visibility="visible"
    android:background="#32FFFF"
    android:layout_centerInParent="true"
    android:id="@+id/image_details_fragment"
    >
    <EditText 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:hint="Please Enter some text here"
        android:singleLine="true"
        />

    </LinearLayout>

 </RelativeLayout>

这是Eclipse中的预览输出和Emulator中的输出运行后

在此处输入图像描述

4

1 回答 1

0

请检查您的后端 java 文件(活动类)一次或将其粘贴到此处。您可能会在运行时某处设置具有该背景的图像视图。

于 2013-01-03T11:27:57.267 回答