- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
编辑:tl;dr:WebView 显示为白框,即使我似乎正确设置了它,而且前两次确实有效,但随后失败)
编辑:Video showing the problem in action...
我有以下代码,它从定义它的 xml 中扩展一个 View (其中包含一个 WebView):
private void createCard(ViewGroup cvFrame, Card card) {
//... setup vairables...
cvFrame.clearDisappearingChildren();
cvFrame.clearAnimation();
try {
View cv = LayoutInflater.from(getBaseContext()).inflate(R.layout.card_back_view,
cvFrame, true);
cv.setBackgroundDrawable(Drawable.createFromStream(mngr.open(deckName + "_Card_back.png"), deckName));
TextView suit = (TextView)cv.findViewWithTag("card_back_suit");
//...setup text view for suit, this code works fine every time...
WebView title = (WebView)cv.findViewWithTag("card_back_title");
//This WebView doesn't appear to be the one which actually appears on screen (I can change settings till I'm blue in the face, with no effect)
if (title != null) {
title.setBackgroundColor(0x00000000);
title.loadData(titleText, "text/html", "UTF-8");
} else {
Log.e("CardView", "Error can't find title WebView");
}
} catch (IOException e) {
Log.e("CardView", "Error making cards: ", e);
}
}
当此方法在我的 Activity 中作为 onCreate 方法的一部分被调用时,WebView 包含正确的代码,并且适当透明。
我有一个手势监听器,它用不同的内容替换 ViewGroup 的内容(它将顶部卡片动画化到左侧,用卡片 2 替换顶部卡片的内容,放回顶部卡片,然后替换卡片 2带卡 3)
//Gesture listener event
ViewGroup cvFrame = (ViewGroup)findViewById(R.id.firstCard);
cardLoc++
cvFrame.startAnimation(slideLeft);
(onAnimationEnd代码)
public void onAnimationEnd(Animation animation) {
if (animation == slideLeft) {
ViewGroup cvFrameOldFront = (ViewGroup)findViewById(R.id.firstCard);
ViewGroup cvFrameNewFront = (ViewGroup)findViewById(R.id.secondCard);
createCard(cvFrameOldFront, cards.get((cardLoc)%cards.size()));
createCard(cvFrameNewFront, cards.get((cardLoc+1)%cards.size()));
TranslateAnimation slideBack = new TranslateAnimation(0,0,0,0);
slideBack.setDuration(1);
slideBack.setFillAfter(true);
cvFrameOldFront.startAnimation(slideBack);
}
}
当动画发生并且我替换了卡片的内容时,TextView suit
被替换得很好并且代码肯定通过代码来替换 WebView 内容,但由于某种原因我结束了上面是一个白色矩形,其大小和形状与 WebView 相同,没有内容,也没有透明度。
如果我将 WebView 更改为 TextView,它的内容会被很好地替换,所以这个问题只发生在 WebView 控件上 :S
谁能告诉我原因/建议修复?
最佳答案
事实证明,当使用 LayoutInflater 替换 ViewGroup 的内容时,WebView 并没有被清除。其他控件似乎都被删除了(或者至少 findViewWithTag()
为每个其他控件返回了正确的引用)。我刚刚在 LayoutInflater 执行之前添加了 cvFrame.removeAllViews()
行,这解决了问题。如果有人对此有更好的解释,我会按照他们的方式提出要点,否则他们只会陷入困境......
关于android - WebView 在第二次初始化后显示为纯白色框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15004304/
我是一名优秀的程序员,十分优秀!