我加载onCreate()
和 ImageView 由findViewById()
. ImageView 在 XML 中被设置为 INVISIBLE,并且它应该onStart()
通过调用变得可见mImage.setVisibility(View.VISIBLE)
。
奇怪的是,可见性没有改变,而如果我从 XML 设置 GONE,可见性实际上已经改变。
有什么我想念的吗?
编辑:
编码:
private class MyClass extends Activity {
...
private ImageView mImage;
...
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mImage = (ImageView)findViewById(R.id.imageViewCompass);
......
}
@Override
protected void onStart() {
super.onStart();
mImage.setVisibility(View.VISIBLE);
}
}
并来自 XML:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeBus"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:id="@+id/imageViewCompass"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:src="@drawable/mwImage"
android:visibility="invisible" />
</RelativeLayout>