其他分享
首页 > 其他分享> > 按百分比设置排名-Android DisplayMetrics

按百分比设置排名-Android DisplayMetrics

作者:互联网

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

这是课程:

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,宽度=屏幕的一半,但不是:

 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 ) );

enter image description here

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之类的属性.

标签:android,set,position,percentage
来源: https://codeday.me/bug/20191013/1905130.html