没有滚动条的ScrollView

先定义样式

 

res/values/scroll_no_bars.xml

 

<?xml version="1.0" encoding="UTF-8"?>

<resources>

    <style name="scrollstyle">

        <item name="android:scrollbars">none</item>

    </style>

</resources>


然后在代码中

new ScrollView(bv_, null, R.style.scrollstyle); 

你可能感兴趣的:(android,null,encoding)