add mock intent

This commit is contained in:
wangcongtao
2021-03-01 14:45:41 +08:00
parent 2e31f018e3
commit cc5313d64d

View File

@@ -5,6 +5,8 @@ import android.content.Intent;
import android.graphics.BitmapFactory;
import android.graphics.Color;
import android.net.Uri;
import android.os.Handler;
import android.os.Message;
import android.text.TextUtils;
import android.view.View;
import android.widget.TextView;
@@ -570,4 +572,15 @@ public class MockIntentHandler implements IntentHandler {
}
}
private Handler mLocationMockHandler = new Handler(WorkThreadHandler.newInstance( "loc-mock-thread" ).getLooper()){
@Override
public void handleMessage( Message msg ) {
super.handleMessage( msg );
}
};
private void handleMockLocationIntent(){
}
}