LoginSignup
1
0

More than 5 years have passed since last update.

Webview(ScrollView)のフェード(端のグラデーション)の色を変更する

Last updated at Posted at 2012-03-16

webviewを継承したクラスを作成してgetSolidColorで指定する。

webview.java
webview = new _webview(this);
class _webview extends WebView {

        public _webview(Context context) {
            super(context);
            // TODO Auto-generated constructor stub
        }
          @Override
          public int getSolidColor()
          {
            return Color.BLACK;
          }
}
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0