Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はアンドロイドが初めてで、別のボタンに関連するポップアップ ダイアログ ボックスを修正したいと考えています。コードを使用してポップアップ ウィンドウを膨らませています。これらの値を使用してポップアップウィンドウを膨らませることができるように、ボタンの現在の位置を取得するにはどうすればよいですか。
Viewこれは、任意のオブジェクトの現在のx/y座標を取得するために使用するコードです。
View
/** * @return the absolute x and y coordinates of the given view */ public Point currentPosition(View view) { int[] loc = new int[2]; view.getLocationOnScreen(loc); return new Point(loc[0], loc[1]); }