make x y在所有设备android studio上都一样

时间:2016-08-31 19:26:36

标签: java android layout coordinates

我刚刚开始使用java开发应用程序,而且我只有一些C语言的经验。在我的Activity.java代码中(在android studio中)我得到了类似的东西,只是举几个例子:

    meteorite1.setX(meteoritePlacementX(meteorite1.getX()));
    meteorite1.setY(-2000);
    gnome.setX(330);
    gnome.setY(800);
    meteorite2.setX(meteoritePlacementX(meteorite2.getX()));
    meteorite2.setY(meteoritePlacementY(meteorite1.getY()));
    meteorite3.setX(meteoritePlacementX(meteorite3.getX()));
    meteorite3.setY(meteoritePlacementY(meteorite2.getY()));
    meteorite4.setX(meteoritePlacementX(meteorite4.getX()));
    meteorite4.setY(meteoritePlacementY(meteorite3.getY()));
    meteorite5.setX(meteoritePlacementX(meteorite5.getX()));
    meteorite5.setY(meteoritePlacementY(meteorite4.getY()));

    meteoritedestruction1.setX(0);
    meteoritedestruction1.setY(-2000);
    meteoritedestruction2.setX(0);
    meteoritedestruction2.setY(-2000);
    meteoritedestruction3.setX(0);
    meteoritedestruction3.setY(-2000);
    meteoritedestruction4.setX(0);
    meteoritedestruction4.setY(-2000);
    meteoritedestruction5.setX(0);
    meteoritedestruction5.setY(-2000);

    star1.setX(300);
    star2.setX(150);
    star3.setX(50);
    star4.setX(500);
    star5.setX(600);
    star6.setX(350);
    star7.setX(80);
    star8.setX(450);
    tinystar1.setX(302);
    tinystar2.setX(240);
    tinystar3.setX(57);
    tinystar4.setX(660);
    tinystar5.setX(400);

    star1.setY(300);
    star2.setY(-300);
    star3.setY(-100);
    star4.setY(100);
    star5.setY(300);
    star6.setY(500);
    star7.setY(700);
    star8.setY(900);
    tinystar1.setY(300);
    tinystar2.setY(-400);
    tinystar3.setY(-200);
    tinystar4.setY(150);
    tinystar5.setY(30);    

public float meteoritePlacementX(float X){

    float MeteoriteNewX = 0f;

    int random = (int )(Math.random() * 480 - 50);

    MeteoriteNewX = random;

    return MeteoriteNewX;
}

哪个工作正常,但只是在我的手机上(720 x 1280像素(~294 ppi像素密度))我测试了我的代码。现在我发布了我的应用程序,但在其他设备上,应用程序的布局完全不同步(这对我来说很有意义,因为每个屏幕的x和y都不同)。按钮和图片工作得很好,但移动对象像

meteorite1.setY(meteorite1.getY() + 20); 

我使用的x和y在其他设备上被破坏了。我使用相对布局。

故事很长;有没有办法改变x和y,所以它变得相对于屏幕?否则我需要更改整个代码。

1 个答案:

答案 0 :(得分:0)

通常,使用基于硬编码像素值的放置不是一个好习惯。这不仅会破坏向后兼容性,还会考虑当2k +手机出现时你必须做什么,你需要一个完整的重构器。查看this问题和Guillaume Perrot的答案,您可以获得相对于用户手机的最大和最小像素值,并使用它们而不是480 - 50和您的星组功能。 />
对于运动来说

DisplayMetrics displayMetrics = new DisplayMetrics();
WindowManager wm = (WindowManager)getApplicationContext().getSystemService(Context.WINDOW_SERVICE); // the results will be higher than using the activity context object or the getWindowManager() shortcut
wm.getDefaultDisplay().getMetrics(displayMetrics);
int maxWidth = displayMetrics.widthPixels;
//Make this percentage whatever you want
float movementPercentage = 0.02
//Will move the object 2 percent up the y axis 
meteorite1.setY(meteorite1.getY() + maxWidth*movementPercentage);