相对布局获取宽度/高度返回0

时间:2013-10-16 20:32:12

标签: android relativelayout

我需要获得相对布局的宽度和高度,但是我不知道相对布局何时准备好为我提供这两个属性。我的活动有多个标签,我在getWidth()之后调用getHeight()中的onCreateView()inflater.inflate(R.layout.fragment_pizza, container, false);,但是它们都返回0,因此它们显然没有准备就绪。是否有某种事件,如afterCreateView()或类似的东西,我可以调用这两种方法,并得到实际的宽度和高度?

代码:

public class PizzaFragment extends Fragment {

    private static final String TAG = "PizzaFragment";

    private Controller controller;

    private static final int BUTTON_WIDTH = 70;
    private static final int BUTTON_HEIGHT = 20;

    private static final int MARGIN_LEFT = 80;
    private static final int MARGIN_BOTTOM = 30;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        controller = Controller.getInstance();
        controller.loadProducts("pizza", getActivity().getApplicationContext());
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.fragment_pizza, container, false);

        RelativeLayout layout = (RelativeLayout) view.findViewById(R.id.rl_order_pizza);
        Log.d(TAG, "Width: " + layout.getWidth());
        Log.d(TAG, "Height: " + layout.getHeight());

        int currentX = 10;
        int currentY = 10;

        RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(BUTTON_WIDTH, BUTTON_HEIGHT);


        for (Product product: controller.getProducts("pizza")){

            Button tempButton = new Button(getActivity());
            tempButton.setId(product.getId());
            tempButton.setText(product.getName());

            if (layout.getWidth() < currentX + MARGIN_LEFT){
                currentX = 10;
                currentY = MARGIN_BOTTOM;

            }
            else{
                currentX += MARGIN_LEFT;
            }

            Log.d(TAG, "CurrentY: " + currentY);
            Log.d(TAG, "CurrentX: " + currentX);

            layoutParams.leftMargin = currentX;
            layoutParams.bottomMargin = currentY;

            tempButton.setLayoutParams(layoutParams);

            layout.addView(tempButton);
        }

        return view;

    }
}

2 个答案:

答案 0 :(得分:11)

我的建议是在onCreateView

中使用这样的全局布局监听器
YOUR_LAYOUT_INSTANCE = view.findViewById(R.id.YOUR_LAYOUT_ID);

...

YOUR_LAYOUT_INSTANCE.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener()
{
    @Override
    public void onGlobalLayout()
    {
        // gets called after layout has been done but before display.
        if (Build.VERSION.SDK_INT < 16) {
            YOUR_LAYOUT_INSTANCE.getViewTreeObserver().removeGlobalOnLayoutListener(this);
        } else {
            YOUR_LAYOUT_INSTANCE.getViewTreeObserver().removeOnGlobalLayoutListener(this);
        }
        // get width and height
    }
});

答案 1 :(得分:1)

addOnGlobalLayoutListener已被弃用removeOnGlobalLayoutListener。为了更好地处理上面提供的解决方案 @fasteque

    YOUR_LAYOUT_INSTANCE.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener()
    {
        @Override
        public void onGlobalLayout()
        {
            // gets called after layout has been done but before display.
            if (Build.VERSION.SDK_INT < 16) {

                        YOUR_LAYOUT_INSTANCE.getViewTreeObserver().removeGlobalOnLayoutListener(this);
                    } 
            else {
                        YOUR_LAYOUT_INSTANCE.getViewTreeObserver().removeOnGlobalLayoutListener(this);
                    }

        // get width and height
        }
    });