最近遇到个问题,想点击设置好的按钮使得图片背景改变,不知道是不是xml文件的问题,图片和按钮是分开的,期望的结果是按钮在图片上,且图片全屏作为背景。新手自学求帮助,谢谢大家!
以下是main.xml 的代码
<?xml version="1.0" encoding="utf-8"?>   
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"   
            android:orientation="vertical"   
            android:layout_height="fill_parent"
            android:layout_width="fill_parent">   
 
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                  android:orientation="horizontal"   
                  android:layout_width="fill_parent"   
                  android:layout_height="fill_parent"   
                  android:gravity="center"> 
                  <Button   
                android:id="@+id/next"   
                android:layout_width="wrap_content"   
                android:layout_height="wrap_content"   
                android:background="@drawable/right_btn"  
                android:layout_gravity="center"  
                /> 
             
             
                <ImageSwitcher  
                android:id="@+id/image" 
                android:layout_width="fill_parent"   
                android:layout_height="fill_parent"   
                android:layout_marginLeft="20dp"  
                android:layout_marginRight="20dp" >   
                 </ImageSwitcher>
                
                 <Button   
                android:id="@+id/forward"   
                android:layout_width="wrap_content"   
                android:layout_height="wrap_content"   
                android:background="@drawable/left_btn"  
                android:layout_gravity="center"  
                />
     </LinearLayout>
  
</LinearLayout>