いくつかのグラフを描画するために使用するクラスを作成しました。クラスは View を拡張します。これはHow to draw a line in android のようになります。
アクティビティ内では、これで表示します
drawView = new DrawView(this);
drawView.setBackgroundColor(Color.WHITE);
setContentView(drawView);
しかしScrollView
、アクティビティの xml の LinearLayout に を追加すると、機能しませんScrollView
。何が問題なのですか?
そして、これはxmlコードです
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/background_image"
android:orientation="vertical" >
</LinearLayout>
</ScrollView>