我是Android的菜鸟,我在尝试以编程方式从底部/中心点而不是默认的顶部/左侧定位按钮时遇到问题。我的按钮底部有一个箭头,我想将位置设置为箭头的尖端。非常感谢任何帮助。
我的代码
popUpButton = (Button) findViewById(R.id.popUp);
popUpButton.setOnClickListener(this);
public void updateMsg(String t_info, float t_x, float t_y, int t_c){
//infoView.updateInfo(t_info, t_x, t_y, t_c);
popUpButton.setText(TouchView.touchInfo);
popUpButton.setX(t_x);
popUpButton.setY(t_y);
}
XML
<RelativeLayout
<Button
android:id="@+id/popUp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/balloon_overlay_bg_selector"
android:text="Button"
android:textColor="#000000"
android:textSize="14dp" />
</RelativeLayout>
答案 0 :(得分:1)
最佳方法可能是您使用y坐标,然后使用button.getheight减去按钮的高度,然后对x坐标执行相同操作。
答案 1 :(得分:0)
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(
LayoutParams.WRAP_CONTENT, LayoutParams.FILL_PARENT);
params.weight = 1.0f;
params.gravity=81;
button.setLayoutParams(params);
答案 2 :(得分:0)
您可以使用relativeLayout作为父级来执行此操作,因此请检查您是否正在使用相对布局...并执行此操作:
RelativeLayout.LayoutParams params = (RelativeLayout.LayoutParams) popUpButton.getLayoutParams();
params.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM);
params.addRule(RelativeLayout.CENTER_VERTICAL);
popUpButton.setLayoutParams(params);
因此,您可以通过程序方式移动或更改objet的位置