gpt4 book ai didi

android - setTranslationX 和 setTranslationY 使 Button 在 Android 中的位置错误。为什么?

转载 作者:行者123 更新时间:2023-11-29 19:33:53 25 4
gpt4 key购买 nike

我有两个按钮:1 和 2。第一个按钮将位于布局的中心,第二个将使用 setTranslationX 和 setTranslationY 进行翻译

    btn1 = (Button) findViewById(R.id.btn1);
setRotateButton(btn1,2,1);
btn2 = (Button) findViewById(R.id.btn2);
setRotateButton(btn2,2,2);

setRotateButton

public void setRotateButton(Button btn,int numViews,int index)
{
//Locate button in center
FrameLayout.LayoutParams lp = new FrameLayout.LayoutParams(130, 130);
lp.gravity = Gravity.CENTER;
btn.setLayoutParams(lp);
//Translation
if (index>1) //To avoid first case
{
float angleDeg = index * 360.0f / numViews - 90.0f;
float angleRad = (float)(angleDeg * Math.PI / 180.0f);
btn.setTranslationX(400 * (float)Math.cos(angleRad));
btn.setTranslationY(400 * (float)Math.sin(angleRad));
}
}

我发现一个问题,当我使用 setTranslationX,setTranslationY 时,按钮 2 的位置可以转换为另一个位置,但我得到的按钮 2 位置的数字错误。它总是返回相同的值。检查它。我使用 onTouch 方法(mainFrame 是一个包含这两个按钮的 FrameLayout)。你能帮我修复setRotateButton中的功能吗?非常感谢。

 @Override
protected void onResume() {
// TODO Auto-generated method stub
super.onResume();

mainFrame.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {

int x = (int) event.getX();
int y = (int) event.getY();

for (int i = 0; i < mainFrame.getChildCount(); i++) {
View current = mainFrame.getChildAt(i);
if (current instanceof Button) {
Button b = (Button) current;
Log.d("TAG","Btn pos:"+String.valueOf(b.getLeft())+";"+String.valueOf(b.getRight())+";"+String.valueOf(b.getTop())+";"+String.valueOf(b.getBottom()));
if (!isPointWithin(x, y, b.getLeft(), b.getRight(), b.getTop(),
b.getBottom())) {
b.getBackground().setState(defaultStates);
b.getBackground().setAlpha(255);

}

if (isPointWithin(x, y, b.getLeft(), b.getRight(), b.getTop(),
b.getBottom())) {
b.getBackground().setState(STATE_PRESSED);
b.getBackground().setAlpha(150);
b.performClick();

if (b != mLastButton) {
mLastButton = b;

}
}

}

}
return true;
}

});

}

这是日志结果

当我将手指移到按钮 1 内,然后移到按钮 1 外

09-15 00:15:50.981 20547-20547/com.example.circlelayout D/TAG: Btn pos:0;150;300;450
09-15 00:01:40.891 20547-20547/com.example.circlelayout D/TAG: Btn pos:397;527;485;615

当我将手指移到按钮 2 内并移到按钮 2 外时。它们是相同的值

09-15 00:01:40.891 20547-20547/com.example.circlelayout D/TAG: Btn pos:397;527;485;615
09-15 00:01:40.891 20547-20547/com.example.circlelayout D/TAG: Btn pos:397;527;485;615
09-15 00:01:40.891 20547-20547/com.example.circlelayout D/TAG: Btn pos:397;527;485;615

最佳答案

getLeft() 这样的方法没有考虑到 View 被翻译了。它们始终返回在布局过程中计算的初始值。

因此您需要改为使用 getX()getY() 并计算新的底角和右角。例如:

int bX = b.getX();
intbY = b.getY();

if (isPointWithin(x, y,
bX, bX + (b.getRight() - b.getLeft()),
bY, bY + (b.getBottom() - b.getTop()) ) )
{
b.getBackground().setState(STATE_PRESSED);
b.getBackground().setAlpha(150);
b.performClick();

if (b != mLastButton) {
mLastButton = b;
}
}

关于android - setTranslationX 和 setTranslationY 使 Button 在 Android 中的位置错误。为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39494045/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com