我创建了一个用于绘制图形的类,该类扩展了View,它看起来就像How to draw a line in android一样。
在活动中,我用这个
显示它 drawView = new DrawView(this);
drawView.setBackgroundColor(Color.WHITE);
setContentView(drawView);
但是当我在活动的xml中添加LinearLayout中的ScrollView
时,它不起作用,我的意思是我无法向下滚动,就像没有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>
答案 0 :(得分:1)
这是因为您使用不同的方法添加了两个视图:系统从xml布局中膨胀的视图和在活动中创建的视图。
这样,当您调用时,将丢弃来自xml布局的内容
的setContentView(drawView函数);
更好地说,使用DrawView
方法中创建的OnCreate
替换。
您应该在活动中为xml布局充气:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
ScrollView container = getLayoutInflater().inflate(R.layout.main_layout, null));
setContentView(drawView);
drawView = container.findViewById(R.id.my_draw_view);
drawView.setBackgroundColor(Color.WHITE);
}
活动布局应如下所示:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<com.yourcompany.DrawView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</LinearLayout>
</ScrollView>
如果它有帮助,不要害羞接受它或+1它。
答案 1 :(得分:0)
您可以以编程方式创建ScrollView并将DrawView作为子项添加到其中。然后将ScrollView设置为Activity的内容。像这样:
drawView = new DrawView(this);
drawView.setBackgroundColor(Color.WHITE);
ScrollView sv = new ScrollView(this);
sv.setLayoutParams( new LayoutParams( LayoutParams.FILL_PARENT,LayoutParams.FILL_PARENT ) );
scrollView.addView( drawView );
setContentView(sv);