2

eclips を使用して Android で「jts トポロジ スイート」ライブラリを使用しようとしています。「ビルド パス」でライブラリを参照し、コードをコンパイルします。

    package com.example.xxx;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import com.vividsolutions.jts.geom.Coordinate;
import com.vividsolutions.jts.geom.GeometryFactory;


public class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    GeometryFactory gf=new GeometryFactory();



}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is     present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

}

電話でアプリケーションを起動し、その後停止するとログに記録されます

10-08 22:10:13.777: W/dalvikvm(30262): VFY: unable to resolve new-instance 638 (Lcom/vividsolutions/jts/geom/GeometryFactory;) in Lcom/example/xxx/MainActivity;

どうすれば修復できますか、ありがとう

4

1 に答える 1

1

jts libs は完璧に動作しますが、ビルドパスの問題でした

于 2013-11-25T12:11:24.377 に答える