2013-04-07 5 views
11

ho già impostato la finestra pop-up, ma voglio centrarlo sotto il pulsante (Visualizza v), che deve essere cliccato per aprirla:Ottenere le misure della struttura in un'altra finestra

public void showPopup(Context c, View v){ 
    int[] location = new int[2]; 
    v.getLocationOnScreen(location); 

    ViewGroup base = (ViewGroup) getView().findViewById(R.id.pup_pattern); 
    LayoutInflater inflater = (LayoutInflater) c.getSystemService(Context.LAYOUT_INFLATER_SERVICE); 
    View pupLayout = inflater.inflate(R.layout.linearlayout_popup, base); 

    final PopupWindow pup = new PopupWindow(pupLayout, android.view.ViewGroup.LayoutParams.WRAP_CONTENT, android.view.ViewGroup.LayoutParams.WRAP_CONTENT); 

    int x = location[0] - (int) ((pupLayout.getWidth() - v.getWidth())/2); // --> pupLayout.getWidth() gives back -2? 
    int y = location[1] + v.getHeight() + 10; 

    pup.setFocusable(true); 
    pup.showAtLocation(v, Gravity.NO_GRAVITY, x, y); 
} 

Qualcuno ha un'idea per ottenere misure?

risposta

21

Non si otterrà l'altezza o la larghezza della vista, che non è stata disegnata sullo schermo.

pupLayout.getWidth() // questo vi darà 0

È necessario per ottenere la larghezza come questo

int width = MeasureSpec.makeMeasureSpec(0, MeasureSpec. UNSPECIFIED); 

usare in questo modo

View pupLayout = inflater.inflate(R.layout.linearlayout_popup, base); 
pupLayout.measure(MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED), 
      MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED)); 

int x = location[0] - (int) ((pupLayout.getMeasuredWidth() - v.getWidth())/2); 
Problemi correlati