I'm implementing a function in my Android app where the user is able to dynamically add and remove views in a FrameLayout and position them with absolute coordinates by using drag and drop techniques. The user will typically load a floor planning image as background to the FrameLayout and then add buttons that represents lamps in the house and position them where appropriate.
Anyway, I have a problem where I need to inflate and add views to the FrameLayout when the Fragment is loaded. The child views are derived from information in a SQLite database. In order to position the child views correctly (depending on orientation) I need to take the width and height of the FrameLayout in account. Therefore, I am unable to do this work in onCreateView() in my Fragment.
The FrameLayout is actually a DragArea (I will still refer to this object as the FrameLayout though, for simplicity), a custom class extending FrameLayout. In order to get a callback to the Fragment when the width/height has been calculated I override onSizeChanged in FrameLayout which calls the Fragment.
And here's the strange thing. If I, in the callback method in my Fragment, create the views and call FrameLayout.invalidate nothing seems to happen. Inspection says the views has been added to the FrameLayout but they are not seen. If I open the hierarchyviewer and press Load View Hierarchy the views appears. So there seems to be a side effect here which draws the views. I have tried to call FrameLayout.requestLayout() and also make sure it's running on the UI thread by doing the logic in getActivity().runOnUiThread() but it makes no difference.
BUT! If I instead place the logic inside onPostExecuted() in a (otherwise useless) AsyncTask the views are drawn.
Please see the code below where this is further described in the comments. The callback method is named onWidthAvailable() and called from FrameLayout.onSizeChanged().
I have also tried to called invalidate() at a later, arbitrary point in time with no luck.
public class ImageFragment extends Fragment implements FragmentRedrawable, OnLongClickListener, OnWidthAvailableListener {
...
/*
* This will, among other things, inflate mPlanningView (A DragArea which extends FrameLayout). This is the FrameLayout that will contain the childs.
*/
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
final LinearLayout view = (LinearLayout) inflater.inflate(R.layout.fragment_image, null);
final ImageView image = (ImageView) view.findViewById(R.id.house_planning);
image.setImageResource(R.drawable.houseplanning);
mPlanningView = (com.doffman.dragarea.DragArea) view.findViewById(R.id.imageview);
image.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_DOWN) {
mPlanningView.invalidate();
setTouchPoint((int) event.getX(), (int) event.getY());
Log.d(Constants.TAG, String.format("Point (%f, %f)", event.getX(), event.getY()));
}
return false;
}
});
image.setOnCreateContextMenuListener(new OnCreateContextMenuListener() {
@Override
public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {
Log.d(Constants.TAG, "Show context menu for point: " + mTouchPoint.x + ", " + mTouchPoint.y);
MenuInflater inflater = new MenuInflater(getActivity());
inflater.inflate(R.menu.image_context_menu, menu);
}
});
mPlanningView.addDragListener(mPlanningView, new OnDragListener() {
@Override
public void onDrag(View view, final DragEvent dragEvent) {
switch (dragEvent.getAction()) {
case com.doffman.dragarea.DragEvent.ACTION_DRAG_STARTED:
mActivity.disallowViewPagerInterception(true);
break;
case com.doffman.dragarea.DragEvent.ACTION_DROP:
final Bundle data = dragEvent.getBundle();
final String tag = data.getString("tagImageItem");
final Integer itemType = data.getInt("tagItemType");
final Integer itemId = data.getInt("tagItemId");
final View v = mPlanningView.findViewWithTag(tag);
if (v == null)
return;
animate(v).setDuration(0).x(dragEvent.getX()).y(dragEvent.getY());
mDb.setImageItemCoordinates(1, itemType, itemId, dragEvent.getX(), dragEvent.getY());
getActivity().runOnUiThread(new Runnable() {
@Override
public void run() {
moveView(v, dragEvent.getX(), dragEvent.getY());
}
});
break;
case com.doffman.dragarea.DragEvent.ACTION_DRAG_ENDED:
mActivity.disallowViewPagerInterception(false);
break;
default:
break;
}
}
});
mPlanningView.getLocationOnScreen(mPlanningViewCoordinates);
Log.d(Constants.TAG, "onCreateView: Width: " + mPlanningView.getWidth());
mPlanningView.setOnWidthAvailableListener(this);
return view;
}
/*
* This is called from mPlanningView.onSizeChanged() (i.e. when the width of
* mPlanningView has been calculated)
*
* This code will read information from SQLite and create Views that will be placed using
* coordinates defined in the database.
*/
@Override
public void onWidthAvailable() {
Log.d(Constants.TAG, "onWidthAvailable: Width is " + mPlanningView.getWidth());
if (mPlanningView.getWidth() == 0)
return;
mPlanningView.removeOnWidthAvailableListener();
/* The most natural thing would be to just do the logic directly. This will indeed add the
* views to mPlanningView but they are never drawn/seen.
Log.d(Constants.TAG, "onWidthAvailable thread: " + Thread.currentThread().getId());
List<ImageLayoutItem> items = mDb.getItemsForImagePage(1);
for (final ImageLayoutItem item : items) {
placeEntity(item);
}
*/
/* But if the logic is instead placed in an AsyncTask, the views are drawn */
new AsyncTask<Void, Void, Void>() {
@Override
protected Void doInBackground(Void... params) {
return null;
}
@Override
protected void onPostExecute(Void result) {
Log.d(Constants.TAG, "onPostExecute: UI thread: " + Thread.currentThread().getId());
List<ImageLayoutItem> items = mDb.getItemsForImagePage(1);
for (final ImageLayoutItem item : items) {
placeEntity(item);
}
}
}.execute();
}
private void moveView(View v, float xFactor, float yFactor) {
int xy[] = translateToAbsoluteCoordinates(xFactor, yFactor);
animate(v).setDuration(0).x(xy[0]).y(xy[1]);
FrameLayout.LayoutParams p = (FrameLayout.LayoutParams) v.getLayoutParams();
p.leftMargin = xy[0];
p.topMargin = xy[1];
p.gravity = Gravity.TOP;
v.setLayoutParams(p);
mPlanningView.invalidate();
}
private int[] translateToAbsoluteCoordinates(float xFactor, float yFactor) {
int xy[] = new int[2];
float width = (float) mPlanningView.getWidth();
float relFloat = width * xFactor;
int relativeX = (int) (relFloat);
int relativeY = (int) ((float) mPlanningView.getHeight() * yFactor);
xy[0] = mPlanningViewCoordinates[0] + relativeX;
xy[1] = mPlanningViewCoordinates[1] + relativeY;
return xy;
}
public void placeEntity(ImageLayoutItem item) {
LayoutInflater inflater = (LayoutInflater) getActivity().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getActivity());
View itemLayout = inflater.inflate(item.getEntity().getItemLayoutId(prefs), null);
itemLayout.setTag(item.getEntity().getItemTypeId() + ":" + item.getEntity().getId());
itemLayout.setTag(R.id.tagItemType, item.getEntity().getItemTypeId());
itemLayout.setTag(R.id.tagItemId, item.getEntity().getId());
item.getEntity().setView(getActivity(), prefs, mProgressViewer, itemLayout, this);
if (!item.isShowTitle()) {
View entityName = itemLayout.findViewById(R.id.entityName);
if (entityName != null)
entityName.setVisibility(View.GONE);
}
if (item.isUseBackground()) {
itemLayout.setBackgroundColor(item.getBackgroundColor());
}
FrameLayout.LayoutParams params = new FrameLayout.LayoutParams(FrameLayout.LayoutParams.WRAP_CONTENT, FrameLayout.LayoutParams.WRAP_CONTENT);
itemLayout.setLayoutParams(params);
mPlanningView.addView(itemLayout, params);
moveView(itemLayout, item.getXFactor(), item.getYFactor());
itemLayout.setOnLongClickListener(this);
}
...
}