我有一个 ViewFlipper,它显示 2 个图像视图(断开连接时一个红色,连接时另一个绿色),但是,我有一个奇怪的结果:有时在我连接时显示红色图像,它会像这样切换:red-green-并返回红色(即使我已连接)。这是JAVA代码:
public void onRegistrationDone(String localProfileUri, long expiryTime) {
updateStatus("Enregistré au serveur.");
Log.d("SUCCEED","Registration DONE");
final ViewFlipper flipper = (ViewFlipper)findViewById(R.id.flipper);
flipper.postDelayed(new Runnable() {
public void run() {
flipper.showNext();
}
},2000);}
视图以红色图像启动,然后,当连接时(并在 2 秒后),通常会显示下一个图像。
可能是什么问题呢?非常感谢你。
编辑:XML 文件(处理程序)
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:id="@+id/sipLabel"
android:textSize="20sp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<ImageView android:id="@+id/status" android:layout_below="@id/sipLabel"
android:layout_width="fill_parent" android:scaleType="center"
android:layout_height="fill_parent" android:layout_weight="0.35" android:gravity="center"
/>
</LinearLayout>