我有一个ScrollView
包含Textview
,Imageview
,Webview
和粘PublisherAdView
在的底部RelativeLayout
包含我ScrollView
和PublisherAdView
.
我的广告的能见度GONE
为默认值,但在广告加载后,我改变的知名度PublisherAdView
来VISIBLE
.
问题是当我改变可见性时,我的ScrollView
自动滚动到某个位置,我不希望这样.
我怎样才能解决这个问题?
这是我的布局
我的代码部分是
mAdView.setAdListener(new AdListener(){ PublisherAdView mAdView = (PublisherAdView) findViewById(R.id.ad_view_sticky); @Override public void onAdLoaded() { super.onAdLoaded(); mAdView.setVisibility(View.VISIBLE); } });
Abdullah Ahç.. 17
实际上添加android:descendantFocusability="blocksDescendants"
到我的根RelativeLayout
解决了问题谢谢你的帮助
实际上添加android:descendantFocusability="blocksDescendants"
到我的根RelativeLayout
解决了问题谢谢你的帮助