大家好我刚接触到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中预览的输出和运行之后的模拟器中的输出
答案 0 :(得分:0)
请检查您的后端java文件(活动类)或将其粘贴到此处。您可能正在运行时在某处设置具有该背景的imageview。