Home | History | Annotate | Download | only in cts
      1 /*
      2  * Copyright (C) 2008 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 
     17 package android.view.cts;
     18 
     19 import android.app.Activity;
     20 import android.os.Bundle;
     21 import android.os.Handler;
     22 
     23 import com.android.compatibility.common.util.CTSResult;
     24 
     25 public class ViewGroupInvalidateChildCtsActivity extends Activity {
     26     public static final String ACTION_INVALIDATE_CHILD = "invalidateChild";
     27 
     28     private final Handler mHandler = new Handler();
     29     private static CTSResult sResult;
     30 
     31     public static void setResult(CTSResult result) {
     32         sResult = result;
     33     }
     34 
     35     @Override
     36     protected void onCreate(Bundle savedInstanceState) {
     37         super.onCreate(savedInstanceState);
     38         setContentView(android.view.cts.R.layout.viewgrouptest_stub);
     39     }
     40 
     41     @Override
     42     protected void onResume() {
     43         super.onResume();
     44 
     45         String action = getIntent().getAction();
     46         if (action.equals(ACTION_INVALIDATE_CHILD)) {
     47             mHandler.postDelayed(() -> {
     48                 MockLinearLayout mll =
     49                         (MockLinearLayout) findViewById(R.id.mocklinearlayout);
     50                 if (!mll.mIsInvalidateChildInParentCalled) {
     51                     fail();
     52                     return;
     53                 }
     54                 sResult.setResult(CTSResult.RESULT_OK);
     55                 finish();
     56             }, 2000);
     57         }
     58     }
     59 
     60     private void fail() {
     61         sResult.setResult(CTSResult.RESULT_FAIL);
     62         finish();
     63     }
     64 }
     65 
     66