forked from organicmaps/organicmaps
[android] Warning fixes
This commit is contained in:
parent
91091c6b03
commit
e14ef0e4be
5 changed files with 6 additions and 11 deletions
|
@ -13,7 +13,6 @@ import android.content.DialogInterface.OnKeyListener;
|
|||
import android.content.Intent;
|
||||
import android.content.IntentFilter;
|
||||
import android.content.res.Configuration;
|
||||
import android.inputmethodservice.Keyboard.Key;
|
||||
import android.location.Location;
|
||||
import android.net.Uri;
|
||||
import android.os.Bundle;
|
||||
|
|
|
@ -4,8 +4,6 @@ import android.content.Context;
|
|||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.AdapterView;
|
||||
import android.widget.AdapterView.OnItemClickListener;
|
||||
import android.widget.RadioButton;
|
||||
import android.widget.TextView;
|
||||
|
||||
|
|
|
@ -44,13 +44,13 @@ public class IconsAdapter extends ArrayAdapter<Icon> implements Chooseable
|
|||
|
||||
private class SpinnerViewHolder
|
||||
{
|
||||
TextView name;
|
||||
// TextView name;
|
||||
ImageView icon;
|
||||
RadioButton checked;
|
||||
|
||||
public SpinnerViewHolder(TextView name, ImageView icon, RadioButton check)
|
||||
{
|
||||
this.name = name;
|
||||
// this.name = name;
|
||||
this.icon = icon;
|
||||
this.checked = check;
|
||||
checked.setVisibility(View.VISIBLE);
|
||||
|
|
|
@ -3,12 +3,11 @@ package com.mapswithme.maps.bookmarks.data;
|
|||
import java.util.HashMap;
|
||||
import java.util.WeakHashMap;
|
||||
|
||||
import com.mapswithme.maps.R;
|
||||
|
||||
import android.content.Context;
|
||||
import android.graphics.Bitmap;
|
||||
import android.graphics.BitmapFactory;
|
||||
import android.util.Log;
|
||||
|
||||
import com.mapswithme.maps.R;
|
||||
|
||||
public class BookmarkIconManager
|
||||
{
|
||||
|
|
|
@ -1,14 +1,13 @@
|
|||
package com.mapswithme.maps.promo.request;
|
||||
|
||||
import com.mapswithme.util.Utils;
|
||||
|
||||
import java.io.BufferedInputStream;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.net.HttpURLConnection;
|
||||
import java.net.MalformedURLException;
|
||||
import java.net.URL;
|
||||
import java.net.URLConnection;
|
||||
|
||||
import com.mapswithme.util.Utils;
|
||||
|
||||
public abstract class PromoActivationRequest
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue