Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an android application, it use FrameLayout with 6 ImageViews. I use simple drag and drop script to move with images. Everything is ok on tablets 10" 1024x800 screen (also on tablet 7"), but there is problem on mobile phone 480x320 screen. I can move with images only on y - direction (up and down), not left and right. leftMargin seems does not take effect. Have you any idea about the reason ? Here is code:

XML:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/main"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#ffffff"    
    >

<LinearLayout
    android:id="@+id/background"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >

    <ImageView
    android:id="@+id/picture_background"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/prazdny" 
    android:gravity="center_vertical"
    />      
</LinearLayout>

<FrameLayout
    android:id="@+id/pictures"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >


<ImageView    
    android:id="@+id/rozlozeny1"
    android:src="@drawable/picture_02_01"   
    android:layout_width="314dip"          
    android:layout_height="230dip"
    android:layout_marginLeft="120dip"
    android:layout_marginTop="70dip"
    />
<ImageView    
    android:id="@+id/rozlozeny2"
    android:src="@drawable/picture_02_02"   
    android:layout_width="128dip"          
    android:layout_height="234dip"
    android:layout_marginLeft="60dip"
    android:layout_marginTop="270dip"
    />
<ImageView    
    android:id="@+id/rozlozeny3"
    android:src="@drawable/picture_02_03"   
    android:layout_width="237dip"          
    android:layout_height="205dip"
    android:layout_marginLeft="120dip"
    android:layout_marginTop="470dip"
    />
<ImageView    
    android:id="@+id/rozlozeny4"
    android:src="@drawable/picture_02_04"   
    android:layout_width="wrap_content"          
    android:layout_height="wrap_content"
    android:layout_marginLeft="820dip"
    android:layout_marginTop="70dip"
    />   
<ImageView    
    android:id="@+id/rozlozeny5"
    android:src="@drawable/picture_02_05"   
    android:layout_width="wrap_content"          
    android:layout_height="wrap_content"
    android:layout_marginLeft="880dip"
    android:layout_marginTop="270dip"
    />
<ImageView    
    android:id="@+id/rozlozeny6"
    android:src="@drawable/picture_02_06"   
    android:layout_width="wrap_content"          
    android:layout_height="wrap_content"
    android:layout_marginLeft="810dip"
    android:layout_marginTop="520dip"
    />
</FrameLayout>
</FrameLayout>

Java code:

rozlozeny1.setOnTouchListener(new View.OnTouchListener() { 


@Override 
public boolean onTouch(View v, MotionEvent event) { 
switch(event.getAction()) 
{ 
case MotionEvent.ACTION_UP:    
break; 
case MotionEvent.ACTION_DOWN:    
break; 
case MotionEvent.ACTION_MOVE: 
x_cord = (int)event.getRawX();
y_cord = (int)event.getRawY();

if(x_cord>windowwidth){x_cord=windowwidth;}
if(y_cord>windowheight){y_cord=windowheight;}

FrameLayout.LayoutParams params = (FrameLayout.LayoutParams) rozlozeny1.getLayoutParams();
params.leftMargin = (x_cord-offsetx);
params.topMargin = (y_cord-offsety);    
rozlozeny1.setLayoutParams(params);

break;
default: 
break; 
} 
return true; 
} 
}
);
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.