这是我的第一个问题!我有一个活动(MainActivity)和一个可以缩放的视图(PanZoomView)。布局是
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<com.example.canvastest.PanZoomView
android:id="@+id/zoomview"
android:layout_width="300dp"
android:layout_height="300dp" />
<TextView
android:id="@+id/tv_mPosX"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
<TextView
android:id="@+id/tv_mPosY"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
</LinearLayout>
我想根据视图中计算的缩放因子 (mScaleFactor) 设置 tv_mPosX/Y 字符串:
public class PanZoomView extends View {
protected Drawable mSampleImage;
protected Context mContext;
protected float mPosX;
protected float mPosY;
//
public float mScaleFactor = 1.f;
...
我在哪里/如何处理这个?
谢谢大家,里卡多