按百分比设置位置 - Android DisplayMetrics

Set position by percent - Android DisplayMetrics

我喜欢在我的应用程序中对所有位置使用百分比。我总是使用相同的系统。我是 android 编程新手。

这是class:

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_;
    }
}

用法示例:

EKRAN = new SCREEN();

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

这意味着 MENU1 按钮 x 位置必须在屏幕中心,但它不是。它的值较小,例如 42%。

也许我的错误是 int - float 之间的关系

这是屏幕截图 (FrameLayout): 我为这个按钮输入了这段代码——这意味着 x = 0 , y = 0 , width = half of screen 但它不是:

 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 ?! 

最佳答案是:不要使用百分比。它不会成功。使用 RelativeLayout 和 layout_gravity center_vertical 等属性。