Position prozentual einstellen - Android DisplayMetrics

Ich verwende gerne Prozentzeichen für alle Positionen in meinen Apps. Ich benutze immer das gleiche System. Ich bin neu in der Android-Programmierung.

Dies ist die Klasse:

public class SCREEN  {

    DisplayMetrics dm = new DisplayMetrics();
    Point size_ = new Point();
    int width;
    int height;

  //  DisplayMetrics metrics = Resources.getSystem().getDisplayMetrics();

    SCREEN (Context CONTEXT_) {
        dm = CONTEXT_.getResources().getDisplayMetrics();
        int densityDpi = dm.densityDpi;
        height = dm.heightPixels;
        width = dm.widthPixels;
    }

    // get full width
    public int WIDTH() {
        return width;
    }
    public int HEIGHT(){
        return height;
    }
    public int W( int PER_ ){
        return width/100*PER_;
    }
    public int H( int PER_   ){
        return height/100*PER_;
    }
}

Nutzungsbeispiel:

EKRAN = new SCREEN();

MENU1.setX( (float) EKRAN.W( 50 ) );

Dies bedeutet, dass sich die Position der Taste MENU1 x in der Mitte des Bildschirms befinden muss, dies jedoch nicht der Fall ist. Es ist ein kleinerer Wert wie 42%.

Vielleicht ist mein Fehler die Beziehung zwischen int - float

Hier ist ein Screenshot (FrameLayout): Ich habe diesen Code für diese Schaltfläche eingegeben. Das bedeutet x = 0, y = 0, Breite = Bildschirmhälfte, aber nicht:

 final Button BTN1 = new Button(this);
    BTN1.setText( String.valueOf( EKRAN.H( 0 ) ) );

    BTN1.setLayoutParams(new FrameLayout.LayoutParams(FrameLayout.LayoutParams.WRAP_CONTENT, FrameLayout.LayoutParams.WRAP_CONTENT));
    VEIW_MAIN.addView(BTN1);

    BTN1.setY( (float)  EKRAN.H( 0 ) );
    BTN1.setX( (float) EKRAN.W( 0 ) );
    BTN1.setWidth( (int)  EKRAN.W( 50 ) );

Important : This work EKRAN.WIDTH()/5 = 216  , but EKRAN.W(20) = 200
My current screen i is 1080 . Only this EKRAN.WIDTH()/2 give me 540 .
Even EKRAN.WIDTH()/100*50 give me 500 ... Where is the 40pix ?! 

Antworten auf die Frage(2)

Ihre Antwort auf die Frage