因此,我遵循了在 android 上绘制东西的教程。我创建了一个 Panel 类,它扩展了我使用线程绘制的 SurfaceView。现在我想把这个面板放在一个滚动视图中,特别是一个水平滚动的视图,这样我就可以画出比屏幕更宽的东西。我会去做吗?
问问题
853 次
2 回答
0
this can be done in the XML of the project what you want to do is, whatever you want to be int the scrollview, you put inside a scrollview in xml. it would be in between:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal">
and:
</ScrollView>
于 2011-02-02T23:11:07.250 回答
0
想象一下,您的自定义组件被命名为(类)MyCustomComponent,它所在的包是 org.neteinstein.code
xml 将是:
<HorizontalScrollView android:id="@+id/scroll" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:fillViewport="true">
<org.neteinstein.code.MyCustomComponent android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
</HorizontalScrollView >
于 2011-02-10T19:22:44.187 回答