我的屏幕不想刷新

时间:2017-09-28 15:25:05

标签: android

我遇到一个问题,我确定不要解决这个问题,但不管我做了什么,它都不会工作!

这是我的问题:我有这个布局

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<ImageView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:src="@drawable/backgroundshape"/>

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/text_timer"
    android:layout_centerVertical="true"
    android:layout_centerHorizontal="true"
    android:textColor="#f44242"
    android:textSize="95dp"
    android:textStyle="bold"
    />

<ImageView
    android:id="@+id/image_1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_marginLeft="25dp"
    android:layout_centerVertical="true"/>

<ImageView
    android:id="@+id/image_2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_marginRight="25dp"
    android:layout_centerVertical="true"/>

</RelativeLayout>

重点是点击最后一个ImageView,它将所有屏幕开始实例化其他视图。 以下是我的表现方式:

public class GameScreen extends Activity {

ImageView imgEmpty, img1, img2;
TextView tvTimer;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.layout_second);

    img1 = (ImageView)findViewById(R.id.image_1);

    img2 = (ImageView)findViewById(R.id.image_2);

    imgEmpty = (ImageView)findViewById(R.id.image_empty);
    imgEmpty.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            img1.setBackgroundResource(R.drawable.feuille);
            img2.setBackgroundResource(R.drawable.feuille);
            tvTimer.setTextSize(95);
            for(int i=0; i<3; i++) {
                imgEmpty.setVisibility(View.GONE);
                try { Thread.sleep(1000); } catch (InterruptedException e) { e.printStackTrace(); Log.d("Ratatataaa","Y passe pas !!!!"); }
                tvTimer.setText(""+i);
                view.invalidate();
            }
        }
    });

    tvTimer = (TextView)findViewById(R.id.text_timer);
    tvTimer.setTextSize(50);
    tvTimer.setText("Ready ?");
}
}

无论我做什么(invalidate(),...),屏幕只在onClick(View视图)结束时刷新

请帮助

2 个答案:

答案 0 :(得分:0)

那里几乎没有不好的瑕疵。例如,对主线程使用sleep(),并在错误的位置初始化TextView

请改为尝试:

....
img1 = (ImageView)findViewById(R.id.image_1);
img2 = (ImageView)findViewById(R.id.image_2); 

tvTimer = (TextView)findViewById(R.id.text_timer);
tvTimer.setTextSize(50);
tvTimer.setText("Ready ?");

imgEmpty = (ImageView)findViewById(R.id.image_empty);
imgEmpty.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View view) {
        img1.setBackgroundResource(R.drawable.feuille);
        img2.setBackgroundResource(R.drawable.feuille);
        tvTimer.setTextSize(95);
        imgEmpty.setVisibility(View.GONE);
        view.invalidate();
        new CountDownTimer(3000, 1000) {
            @Override
            public void onTick (long millisUntilFinished) {
                tvTimer.setText("" + ((int)(3000 - millisUntilFinisehd)/1000));
            }

            @Override
            public void onFinish () {}
        };
    }
});
....

答案 1 :(得分:0)

我通过添加Handler和Runnable解决了这个问题。

请参阅:How to set a timer in android