我点击时更改了谷歌地图上图像图标的位置,点击它就像加号和减号一样转到当前位置。那么如何改变这些符号的位置呢。
我不知道我们称之为图片图标。我试图谷歌如何改变该图标的位置,但没有用。
答案 0 :(得分:3)
试试这种方式,希望这可以帮助您解决问题
View plusMinusButton = suppormanagerObj.getView().findViewById(1);
View locationButton = suppormanagerObj.getView().findViewById(2);
// and next place it, for exemple, on bottom right (as Google Maps app)
RelativeLayout.LayoutParams rlp = (RelativeLayout.LayoutParams) locationButton.getLayoutParams();
// position on right bottom
rlp.addRule(RelativeLayout.ALIGN_PARENT_TOP, 0);
rlp.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM, RelativeLayout.TRUE);