本文整理汇总了Java中android.net.TrafficStats.clearThreadStatsTag方法的典型用法代码示例。如果您正苦于以下问题:Java TrafficStats.clearThreadStatsTag方法的具体用法?Java TrafficStats.clearThreadStatsTag怎么用?Java TrafficStats.clearThreadStatsTag使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.net.TrafficStats
的用法示例。
在下文中一共展示了TrafficStats.clearThreadStatsTag方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: performRequest
import android.net.TrafficStats; //导入方法依赖的package包/类
@Override
public HttpResponse performRequest(Request<?> request, Map<String, String> additionalHeaders) throws IOException, AuthFailureError {
long startTime = System.currentTimeMillis();
if(Const.DEVELOPER_MODE && Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
TrafficStats.setThreadStatsTag(0xF00D);
try {
HttpResponse res = super.performRequest(request, additionalHeaders);
App.getInstance().getTracker().sendTiming("net",System.currentTimeMillis()-startTime, "volley", null);
return res;
} finally {
TrafficStats.clearThreadStatsTag();
}
} else {
HttpResponse response = super.performRequest(request, additionalHeaders);
App.getInstance().getTracker().sendTiming("net",System.currentTimeMillis()-startTime, "gapi", null);
return response;
}
}
示例2: getFollowers
import android.net.TrafficStats; //导入方法依赖的package包/类
private void getFollowers() {
if (BuildConfig.NETWORK_TEST && Build.VERSION.SDK_INT >= 14) {
try {
TrafficStats.setThreadStatsTag(APP_INITIATED_REQUEST);
// Once tag has been applied, network request has to be made request
} finally {
TrafficStats.clearThreadStatsTag();
}
}
RetroInterface.getZomatoRestApi().getUserFollowers(
SessionPreference.getUserId(context) + "",
user_id + "",
new Callback<UserListResponse>() {
@Override
public void success(UserListResponse userListResponse, Response response) {
if(userListResponse!=null){
list = userListResponse.getUsers();
recyclerViewAdapter.refresh(list);
}
}
@Override
public void failure(RetrofitError error) {
}
}
);
}
示例3: getFollowing
import android.net.TrafficStats; //导入方法依赖的package包/类
private void getFollowing() {
if (BuildConfig.NETWORK_TEST && Build.VERSION.SDK_INT >= 14) {
try {
TrafficStats.setThreadStatsTag(APP_INITIATED_REQUEST);
// Once tag has been applied, network request has to be made request
} finally {
TrafficStats.clearThreadStatsTag();
}
}
RetroInterface.getZomatoRestApi().getUserFollowing(
SessionPreference.getUserId(context) + "",
user_id + "",
new Callback<UserListResponse>() {
@Override
public void success(UserListResponse userListResponse, Response response) {
if (userListResponse != null) {
list = userListResponse.getUsers();
recyclerViewAdapter.refresh(list);
}
}
@Override
public void failure(RetrofitError error) {
}
}
);
}
示例4: followUser
import android.net.TrafficStats; //导入方法依赖的package包/类
private void followUser(int pos, boolean isFollowing) {
if (BuildConfig.NETWORK_TEST && Build.VERSION.SDK_INT >= 14) {
try {
TrafficStats.setThreadStatsTag(USER_INITIATED_REQUEST);
// Once tag has been applied, network request has to be made request
} finally {
TrafficStats.clearThreadStatsTag();
}
}
User user = mList.get(pos);
RetroInterface.getZomatoRestApi().followUser(
SessionPreference.getUserId(context) + "",
user.getId() + "",
(isFollowing ? 1 : 0) + "",
new Callback<NormalResponse>() {
@Override
public void success(NormalResponse userListResponse, Response response) {
}
@Override
public void failure(RetrofitError error) {
}
}
);
}
示例5: getRecentlyViewed
import android.net.TrafficStats; //导入方法依赖的package包/类
private void getRecentlyViewed() {
if (BuildConfig.NETWORK_TEST && Build.VERSION.SDK_INT >= 14) {
try {
TrafficStats.setThreadStatsTag(APP_INITIATED_REQUEST);
// Once tag has been applied, network request has to be made request
} finally {
TrafficStats.clearThreadStatsTag();
}
}
UserLocation location = LocationPreference.getUserLocation(context);
RetroInterface.getZomatoRestApi().getRecentRestaurants(
SessionPreference.getUserId(context) + "",
location.getLatitude() + "",
location.getLongitude() + "",
new Callback<RestaurantResponse>() {
@Override
public void success(RestaurantResponse restaurantResponse, Response response) {
if (restaurantResponse != null && restaurantResponse.isSuccess()) {
allList = restaurantResponse.getItems();
allAdapter.refresh(allList);
}
}
@Override
public void failure(RetrofitError error) {
}
});
}
示例6: goSocialLogin
import android.net.TrafficStats; //导入方法依赖的package包/类
private void goSocialLogin(User user) {
if (BuildConfig.NETWORK_TEST && Build.VERSION.SDK_INT >= 14) {
try {
TrafficStats.setThreadStatsTag(USER_INITIATED_REQUEST);
// Once tag has been applied, network request has to be made request
} finally {
TrafficStats.clearThreadStatsTag();
}
}
RetroInterface.getZomatoRestApi().loginSocial(
CommonFunctions.getHashMap(user),
new Callback<UserResponse>() {
@Override
public void success(UserResponse userResponse, Response response) {
if (userResponse != null && userResponse.isSuccess()) {
if (userResponse.getUser() != null) {
loginSuccess(userResponse.getUser());
}
}
}
@Override
public void failure(RetrofitError error) {
}
}
);
}
示例7: goNormalLogin
import android.net.TrafficStats; //导入方法依赖的package包/类
private void goNormalLogin(User user) {
if (BuildConfig.NETWORK_TEST && Build.VERSION.SDK_INT >= 14) {
try {
TrafficStats.setThreadStatsTag(USER_INITIATED_REQUEST);
// Once tag has been applied, network request has to be made request
} finally {
TrafficStats.clearThreadStatsTag();
}
}
RetroInterface.getZomatoRestApi().loginNormal(
CommonFunctions.getHashMap(user),
new Callback<UserResponse>() {
@Override
public void success(UserResponse userResponse, Response response) {
if (userResponse != null && userResponse.isSuccess()) {
if (userResponse.getUser() != null) {
loginSuccess(userResponse.getUser());
}
}
}
@Override
public void failure(RetrofitError error) {
}
}
);
}
示例8: goNormalRegister
import android.net.TrafficStats; //导入方法依赖的package包/类
private void goNormalRegister(User user) {
if (BuildConfig.NETWORK_TEST && Build.VERSION.SDK_INT >= 14) {
try {
TrafficStats.setThreadStatsTag(USER_INITIATED_REQUEST);
// Once tag has been applied, network request has to be made request
} finally {
TrafficStats.clearThreadStatsTag();
}
}
RetroInterface.getZomatoRestApi().registerNormal(
CommonFunctions.getHashMap(user),
new Callback<UserResponse>() {
@Override
public void success(UserResponse userResponse, Response response) {
if (userResponse != null && userResponse.isSuccess()) {
if (userResponse.getUser() != null) {
loginSuccess(userResponse.getUser());
}
}
}
@Override
public void failure(RetrofitError error) {
}
}
);
}
示例9: followUser
import android.net.TrafficStats; //导入方法依赖的package包/类
private void followUser(int pos, boolean isFollowing) {
if (BuildConfig.NETWORK_TEST && Build.VERSION.SDK_INT >= 14) {
try {
TrafficStats.setThreadStatsTag(USER_INITIATED_REQUEST);
// Once tag has been applied, network request has to be made request
} finally {
TrafficStats.clearThreadStatsTag();
}
}
User user = allList.get(pos);
RetroInterface.getZomatoRestApi().followUser(
SessionPreference.getUserId(context) + "",
user.getId() + "",
(isFollowing ? 1 : 0) + "",
new Callback<NormalResponse>() {
@Override
public void success(NormalResponse userListResponse, Response response) {
}
@Override
public void failure(RetrofitError error) {
}
}
);
}
示例10: setList
import android.net.TrafficStats; //导入方法依赖的package包/类
private void setList() {
if (BuildConfig.NETWORK_TEST && Build.VERSION.SDK_INT >= 14) {
try {
TrafficStats.setThreadStatsTag(APP_INITIATED_REQUEST);
// Once tag has been applied, network request has to be made request
} finally {
TrafficStats.clearThreadStatsTag();
}
}
RetroInterface.getZomatoRestApi().getUserSuggestion(
SessionPreference.getUserId(context) + "",
new Callback<UserListResponse>() {
@Override
public void success(UserListResponse userListResponse, Response response) {
if (userListResponse != null) {
allList = userListResponse.getUsers();
allAdapter.refresh(allList);
}
}
@Override
public void failure(RetrofitError error) {
}
}
);
}
示例11: getPopularLocations
import android.net.TrafficStats; //导入方法依赖的package包/类
private void getPopularLocations() {
if (BuildConfig.NETWORK_TEST && Build.VERSION.SDK_INT >= 14) {
try {
TrafficStats.setThreadStatsTag(APP_INITIATED_REQUEST);
// Once tag has been applied, network request has to be made request
} finally {
TrafficStats.clearThreadStatsTag();
}
}
RetroInterface.getZomatoRestApi().getPopularLocation(
"",
new Callback<UserLocationResponse>() {
@Override
public void success(UserLocationResponse userLocationResponse, Response response) {
locationItems = userLocationResponse.getUserLocations();
popularAdapter.refresh(locationItems);
}
@Override
public void failure(RetrofitError error) {
}
}
);
}
示例12: getRestaurants
import android.net.TrafficStats; //导入方法依赖的package包/类
private void getRestaurants() {
if (BuildConfig.NETWORK_TEST && Build.VERSION.SDK_INT >= 14) {
try {
TrafficStats.setThreadStatsTag(APP_INITIATED_REQUEST);
// Once tag has been applied, network request has to be made request
} finally {
TrafficStats.clearThreadStatsTag();
}
}
UserLocation location =
LocationPreference.getUserLocation(context);
RetroInterface.getZomatoRestApi().getRecommendedRestaurants(
SessionPreference.getUserId(context)+"",
location.getLatitude() + "",
location.getLongitude() + "",
new Callback<RestaurantResponse>() {
@Override
public void success(RestaurantResponse restaurantResponse, Response response) {
if (restaurantResponse != null && restaurantResponse.isSuccess()) {
mightList = restaurantResponse.getItems();
mightAdapter.refresh(mightList);
}
}
@Override
public void failure(RetrofitError error) {
}
}
);
}
示例13: getRestaurantList
import android.net.TrafficStats; //导入方法依赖的package包/类
private void getRestaurantList() {
if (BuildConfig.NETWORK_TEST && Build.VERSION.SDK_INT >= 14) {
try {
TrafficStats.setThreadStatsTag(APP_INITIATED_REQUEST);
// Once tag has been applied, network request has to be made request
} finally {
TrafficStats.clearThreadStatsTag();
}
}
UserLocation location = LocationPreference.getUserLocation(context);
RetroInterface.getZomatoRestApi().getAllRestaurants(
SessionPreference.getUserId(context) + "",
location.getLatitude() + "",
location.getLongitude() + "",
new Callback<RestaurantResponse>() {
@Override
public void success(RestaurantResponse restaurantResponse, Response response) {
if (restaurantResponse != null && restaurantResponse.isSuccess()) {
allList = restaurantResponse.getItems();
//allAdapter.refresh(allList);
refreshList();
}
}
@Override
public void failure(RetrofitError error) {
}
}
);
}
开发者ID:PacktPublishing,项目名称:Expert-Android-Programming,代码行数:39,代码来源:AddPlaceToCollectionActivity.java
示例14: getCollectionRestaurants
import android.net.TrafficStats; //导入方法依赖的package包/类
private void getCollectionRestaurants() {
if (BuildConfig.NETWORK_TEST && Build.VERSION.SDK_INT >= 14) {
try {
TrafficStats.setThreadStatsTag(APP_INITIATED_REQUEST);
// Once tag has been applied, network request has to be made request
} finally {
TrafficStats.clearThreadStatsTag();
}
}
UserLocation location = LocationPreference.getUserLocation(context);
RetroInterface.getZomatoRestApi().getCollectionRestaurants(
SessionPreference.getUserId(context)+"",
item.getId() + "",
location.getLatitude() + "",
location.getLongitude() + "",
new Callback<RestaurantResponse>() {
@Override
public void success(RestaurantResponse restaurantResponse, Response response) {
if (restaurantResponse != null && restaurantResponse.isSuccess()) {
mightList = restaurantResponse.getItems();
mightAdapter.refresh(mightList);
saves.setText(getString(R.string.txt_place_n_save, mightList.size(), item.getCount()));
}
}
@Override
public void failure(RetrofitError error) {
}
}
);
}
示例15: getRestaurantDetails
import android.net.TrafficStats; //导入方法依赖的package包/类
private void getRestaurantDetails() {
if (BuildConfig.NETWORK_TEST && Build.VERSION.SDK_INT >= 14) {
try {
TrafficStats.setThreadStatsTag(APP_INITIATED_REQUEST);
// Once tag has been applied, network request has to be made request
} finally {
TrafficStats.clearThreadStatsTag();
}
}
RetroInterface.getZomatoRestApi().getRestaurantDetails(
SessionPreference.getUserId(context) + "",
restaurantItem.getId() + "",
new Callback<RestaurantDetailResponse>() {
@Override
public void success(RestaurantDetailResponse restaurantResponse, Response response) {
RestaurantDetails details = restaurantResponse.getDetails();
List<RestaurantImage> images = details.getImages();
List<RestaurantTiming> timings = details.getTimings();
List<RestaurantImage> photos = details.getPhoto();
List<RestaurantMenu> menu = details.getMenu();
reviewItems = details.getReviews();
setPagerImages(images);
setTimings(timings);
setReviews();
updatePhotos(photos);
updateMenus(menu);
setMoreDetails(details.getReviewDetail(), details.getBookmark(), details.getBeenThere());
}
@Override
public void failure(RetrofitError error) {
}
}
);
}