0
在我的谷歌地圖應用程序中,我爲不同的位置使用自定義標記。我成功實現了這一點,但我需要動態增加自定義標記的大小。我用下面的代碼動態增加谷歌地圖中自定義標記的大小
imgView.getLayoutParams().height = 200;
imgView.getLayoutParams().width = 200;
代碼工作正常,但在nexus4和5標記是非常大的一些設備。請幫我解決這個問題
自定義標記的XMl
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<ImageView
android:layout_width="36dp"
android:layout_height="36dp"
android:src="@drawable/marker" />
<TextView
android:layout_width="36dp"
android:layout_height="wrap_content"
android:layout_marginTop="3dp"
android:gravity="center"
android:textColor="#FFFFFF"
android:textSize="14sp"
android:textStyle="bold" />
</RelativeLayout>
如何在xml中設置layoutparams?重量也許呢? –
請檢查我的自定義標記XML – user1517638