0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Android】GoogleMapの専用UIの位置を変える【Kotlin】

Posted at

はじめに

GoogleMapを用いたアプリでは GoogleMapUIがあり、GoogleMapの操作をUI行うことができます。
ズーム、コンパス表示、現在地ボタン、屋内で使われる階層別で表示できるレベルピッカー、マーカーをタップした時に現れるマップツールバー などがあり 基本的にマップの上端、下端、左端、右端の位置に表示されます。
詳しくは 分かりやすくまとめてくれている記事やAndroid公式を見てもらえればと思います。

今回は、その表示位置を変更する方法を記事に残しておこうと思います。

実践

公式では、

コントロールを上端、下端、左端、または右端から移動するには、GoogleMap オブジェクトにパディングを追加します。

とあります。

 googleMap.setPadding(0,0,0,0)

引数には 第一引数から順に left,top,right,bottom の順に入れていきます。

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?