I have 5 buttons in an Activity with relative layout. I have a function called init() which will reposition the buttons using setX() and setY(). When I call init() from inside the onClickListener, the buttons are rearranged without any problem. But when I call the function from onCreate() or onStart(), the log shows that the function has been executed but the buttons stays in same position. What should I do?
Also If I call init() from onResume(), the buttons are repositioned without problem.
public class MainActivity extends ActionBarActivity {
@Override
protected void onStart()
{
super.onStart();
}
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//if init() is called here I can see the Log "Tag/Init Executed" but the buttons are not repositioned
}
@Override
protected void onResume()
{
Log.i("Log", "resume called");
super.onResume();
//if i call init() here, the button is not repositioned but if i click home button and resume the app again, the button is repositioned.
}
public void init()
{
Log.i("Tag","Init Executed");
b1=(ImageButton)findViewById(R.id.imageButton);
b1.setX(p.x);
b1.setY(p.y);
}
}
Okay, I solved this, long time ago. Just now got time to update it. It worked for me after using this.