用HorizontalScrollView,我怎么才能使背景不透明呢?谢谢!
发布于 2013-09-30 15:15:29
您应该在xml中添加以下内容:
android:background="@android:color/white"
或者在java类中:
yourView.setBackgroundColor(Color.WHITE);
https://stackoverflow.com/questions/19088408
相似问题