[android] Cast linter fixes

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2021-03-23 22:42:28 +01:00 committed by Roman Tsisyk
parent 53167676b7
commit 3ac20f09c5
60 changed files with 221 additions and 221 deletions

View file

@ -111,8 +111,8 @@ public class ChooseBookmarkCategoryAdapter extends BaseBookmarkCategoryAdapter<C
public SingleChoiceHolder(View convertView)
{
super(convertView);
name = (TextView) convertView.findViewById(R.id.tv__set_name);
checked = (RadioButton) convertView.findViewById(R.id.rb__selected);
name = convertView.findViewById(R.id.tv__set_name);
checked = convertView.findViewById(R.id.rb__selected);
}
}
}

View file

@ -65,7 +65,7 @@ public class IconsAdapter extends ArrayAdapter<Icon>
SpinnerViewHolder(View convertView)
{
icon = (ImageView) convertView.findViewById(R.id.iv__color);
icon = convertView.findViewById(R.id.iv__color);
}
}

View file

@ -323,7 +323,7 @@ public class DiscoveryFragment extends BaseMwmToolbarFragment implements Discove
UiUtils.hide(view, R.id.galleriesLayout);
PlaceholderView placeholder = (PlaceholderView) view.findViewById(R.id.placeholder);
PlaceholderView placeholder = view.findViewById(R.id.placeholder);
placeholder.setContent(R.string.discovery_button_404_error_title,
R.string.discovery_button_404_error_message);
UiUtils.show(placeholder);

View file

@ -55,7 +55,7 @@ class BottomPanel
{
mFragment = fragment;
mFab = (FloatingActionButton) frame.findViewById(R.id.fab);
mFab = frame.findViewById(R.id.fab);
mFab.setOnClickListener(new View.OnClickListener()
{
@Override
@ -67,7 +67,7 @@ class BottomPanel
}
});
mButton = (Button) frame.findViewById(R.id.action);
mButton = frame.findViewById(R.id.action);
}
private void setUpdateAllState(UpdateInfo info)

View file

@ -142,19 +142,19 @@ public class CountrySuggestFragment extends BaseMwmFragment implements View.OnCl
private void initViews(View view)
{
mLlSelectDownload = (LinearLayout) view.findViewById(R.id.ll__select_download);
mLlActiveDownload = (LinearLayout) view.findViewById(R.id.ll__active_download);
mLlWithLocation = (LinearLayout) view.findViewById(R.id.ll__location_determined);
mLlNoLocation = (LinearLayout) view.findViewById(R.id.ll__location_unknown);
mBtnDownloadMap = (Button) view.findViewById(R.id.btn__download_map);
mLlSelectDownload = view.findViewById(R.id.ll__select_download);
mLlActiveDownload = view.findViewById(R.id.ll__active_download);
mLlWithLocation = view.findViewById(R.id.ll__location_determined);
mLlNoLocation = view.findViewById(R.id.ll__location_unknown);
mBtnDownloadMap = view.findViewById(R.id.btn__download_map);
mBtnDownloadMap.setOnClickListener(this);
Button selectMap = (Button)view.findViewById(R.id.btn__select_map);
Button selectMap = view.findViewById(R.id.btn__select_map);
selectMap.setOnClickListener(this);
mWpvDownloadProgress = (WheelProgressView) view.findViewById(R.id.wpv__download_progress);
mWpvDownloadProgress = view.findViewById(R.id.wpv__download_progress);
mWpvDownloadProgress.setOnClickListener(this);
mTvCountry = (TextView) view.findViewById(R.id.tv__country_name);
mTvActiveCountry = (TextView) view.findViewById(R.id.tv__active_country_name);
mTvProgress = (TextView) view.findViewById(R.id.downloader_progress);
mTvCountry = view.findViewById(R.id.tv__country_name);
mTvActiveCountry = view.findViewById(R.id.tv__active_country_name);
mTvProgress = view.findViewById(R.id.downloader_progress);
}
private void updateViews()

View file

@ -463,10 +463,10 @@ class DownloaderAdapter extends RecyclerView.Adapter<DownloaderAdapter.ViewHolde
}
});
mName = (TextView) frame.findViewById(R.id.name);
mSubtitle = (TextView) frame.findViewById(R.id.subtitle);
mFoundName = (TextView) frame.findViewById(R.id.found_name);
mSize = (TextView) frame.findViewById(R.id.size);
mName = frame.findViewById(R.id.name);
mSubtitle = frame.findViewById(R.id.subtitle);
mFoundName = frame.findViewById(R.id.found_name);
mSize = frame.findViewById(R.id.size);
frame.setOnClickListener(new View.OnClickListener()
{
@ -560,7 +560,7 @@ class DownloaderAdapter extends RecyclerView.Adapter<DownloaderAdapter.ViewHolde
HeaderViewHolder(@NonNull View frame)
{
super(frame);
mTitle = (TextView) frame.findViewById(R.id.title);
mTitle = frame.findViewById(R.id.title);
}
void bind(int position)

View file

@ -22,8 +22,8 @@ public class DownloaderStatusIcon
public DownloaderStatusIcon(View frame)
{
mFrame = frame;
mIcon = (ImageView) mFrame.findViewById(R.id.downloader_status);
mProgress = (WheelProgressView) mFrame.findViewById(R.id.downloader_progress_wheel);
mIcon = mFrame.findViewById(R.id.downloader_status);
mProgress = mFrame.findViewById(R.id.downloader_progress_wheel);
}
public DownloaderStatusIcon setOnIconClickListener(View.OnClickListener listener)

View file

@ -192,13 +192,13 @@ public class OnmapDownloader implements MwmActivity.LeftAnimationTrackListener
{
mActivity = activity;
mFrame = activity.findViewById(R.id.onmap_downloader);
mParent = (TextView)mFrame.findViewById(R.id.downloader_parent);
mTitle = (TextView)mFrame.findViewById(R.id.downloader_title);
mSize = (TextView)mFrame.findViewById(R.id.downloader_size);
mParent = mFrame.findViewById(R.id.downloader_parent);
mTitle = mFrame.findViewById(R.id.downloader_title);
mSize = mFrame.findViewById(R.id.downloader_size);
View controls = mFrame.findViewById(R.id.downloader_controls_frame);
mProgress = (WheelProgressView) controls.findViewById(R.id.wheel_downloader_progress);
mButton = (Button) controls.findViewById(R.id.downloader_button);
mProgress = controls.findViewById(R.id.wheel_downloader_progress);
mButton = controls.findViewById(R.id.downloader_button);
mProgress.setOnClickListener(new View.OnClickListener()
{

View file

@ -58,10 +58,10 @@ public class AdvancedTimetableFragment extends BaseMwmFragment
private void initViews(View view)
{
view.findViewById(R.id.examples).setOnClickListener(this);
mInput = (EditText) view.findViewById(R.id.et__timetable);
mExample = (WebView) view.findViewById(R.id.wv__examples);
mInput = view.findViewById(R.id.et__timetable);
mExample = view.findViewById(R.id.wv__examples);
mExample.loadUrl(Constants.Url.OPENING_HOURS_MANUAL);
mExamplesTitle = (TextView) view.findViewById(R.id.tv__examples_title);
mExamplesTitle = view.findViewById(R.id.tv__examples_title);
setExampleDrawables(R.drawable.ic_type_text, R.drawable.ic_expand_more);
setTextChangedListener(mInput, mListener);
}

View file

@ -106,8 +106,8 @@ public class CuisineAdapter extends RecyclerView.Adapter<CuisineAdapter.ViewHold
public ViewHolder(View itemView)
{
super(itemView);
cuisine = (TextView) itemView.findViewById(R.id.cuisine);
selected = (CheckBox) itemView.findViewById(R.id.selected);
cuisine = itemView.findViewById(R.id.cuisine);
selected = itemView.findViewById(R.id.selected);
selected.setOnCheckedChangeListener(this);
itemView.setOnClickListener(new View.OnClickListener()
{

View file

@ -357,16 +357,16 @@ public class EditorFragment extends BaseMwmFragment implements View.OnClickListe
private void initNamesView(final View view)
{
mNamesCaption = (TextView) view.findViewById(R.id.show_additional_names);
mNamesCaption = view.findViewById(R.id.show_additional_names);
mNamesCaption.setOnClickListener(this);
mAddLanguage = (TextView) view.findViewById(R.id.add_langs);
mAddLanguage = view.findViewById(R.id.add_langs);
mAddLanguage.setOnClickListener(this);
mMoreLanguages = (TextView) view.findViewById(R.id.more_names);
mMoreLanguages = view.findViewById(R.id.more_names);
mMoreLanguages.setOnClickListener(this);
mNamesView = (RecyclerView) view.findViewById(R.id.recycler);
mNamesView = view.findViewById(R.id.recycler);
mNamesView.setNestedScrollingEnabled(false);
mNamesView.setLayoutManager(new LinearLayoutManager(getActivity()));
mNamesAdapter = new MultilanguageAdapter(mParent);
@ -410,7 +410,7 @@ public class EditorFragment extends BaseMwmFragment implements View.OnClickListe
categoryBlock.setOnClickListener(this);
// TODO show icon and fill it when core will implement that
UiUtils.hide(categoryBlock.findViewById(R.id.icon));
mCategory = (TextView) categoryBlock.findViewById(R.id.name);
mCategory = categoryBlock.findViewById(R.id.name);
mCardName = view.findViewById(R.id.cv__name);
mCardAddress = view.findViewById(R.id.cv__address);
mCardDetails = view.findViewById(R.id.cv__details);
@ -418,50 +418,50 @@ public class EditorFragment extends BaseMwmFragment implements View.OnClickListe
// Address
view.findViewById(R.id.block_street).setOnClickListener(this);
mStreet = (TextView) view.findViewById(R.id.street);
mStreet = view.findViewById(R.id.street);
View blockHouseNumber = view.findViewById(R.id.block_building);
mHouseNumber = findInputAndInitBlock(blockHouseNumber, 0, R.string.house_number);
mInputHouseNumber = (TextInputLayout) blockHouseNumber.findViewById(R.id.custom_input);
mInputHouseNumber = blockHouseNumber.findViewById(R.id.custom_input);
View blockZipcode = view.findViewById(R.id.block_zipcode);
mZipcode = findInputAndInitBlock(blockZipcode, 0, R.string.editor_zip_code);
mInputZipcode = (TextInputLayout) blockZipcode.findViewById(R.id.custom_input);
mInputZipcode = blockZipcode.findViewById(R.id.custom_input);
// Details
mBlockLevels = view.findViewById(R.id.block_levels);
mBuildingLevels = findInputAndInitBlock(mBlockLevels, 0, getString(R.string.editor_storey_number, 25));
mBuildingLevels.setInputType(InputType.TYPE_CLASS_NUMBER);
mInputBuildingLevels = (TextInputLayout) mBlockLevels.findViewById(R.id.custom_input);
mInputBuildingLevels = mBlockLevels.findViewById(R.id.custom_input);
View blockPhone = view.findViewById(R.id.block_phone);
mPhone = findInputAndInitBlock(blockPhone, R.drawable.ic_phone, R.string.phone);
mPhone.setInputType(InputType.TYPE_CLASS_PHONE);
mInputPhone = (TextInputLayout) blockPhone.findViewById(R.id.custom_input);
mInputPhone = blockPhone.findViewById(R.id.custom_input);
View blockWeb = view.findViewById(R.id.block_website);
mWebsite = findInputAndInitBlock(blockWeb, R.drawable.ic_website, R.string.website);
mWebsite.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_URI);
mInputWebsite = (TextInputLayout) blockWeb.findViewById(R.id.custom_input);
mInputWebsite = blockWeb.findViewById(R.id.custom_input);
View blockEmail = view.findViewById(R.id.block_email);
mEmail = findInputAndInitBlock(blockEmail, R.drawable.ic_email, R.string.email);
mEmail.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_EMAIL_ADDRESS);
mInputEmail = (TextInputLayout) blockEmail.findViewById(R.id.custom_input);
mInputEmail = blockEmail.findViewById(R.id.custom_input);
View blockCuisine = view.findViewById(R.id.block_cuisine);
blockCuisine.setOnClickListener(this);
mCuisine = (TextView) view.findViewById(R.id.cuisine);
mCuisine = view.findViewById(R.id.cuisine);
View blockOperator = view.findViewById(R.id.block_operator);
mOperator = findInputAndInitBlock(blockOperator, R.drawable.ic_operator, R.string.editor_operator);
View blockWifi = view.findViewById(R.id.block_wifi);
mWifi = (SwitchCompat) view.findViewById(R.id.sw__wifi);
mWifi = view.findViewById(R.id.sw__wifi);
blockWifi.setOnClickListener(this);
View blockOpeningHours = view.findViewById(R.id.block_opening_hours);
mEditOpeningHours = blockOpeningHours.findViewById(R.id.edit_opening_hours);
mEditOpeningHours.setOnClickListener(this);
mEmptyOpeningHours = blockOpeningHours.findViewById(R.id.empty_opening_hours);
mEmptyOpeningHours.setOnClickListener(this);
mOpeningHours = (TextView) blockOpeningHours.findViewById(R.id.opening_hours);
mOpeningHours = blockOpeningHours.findViewById(R.id.opening_hours);
mOpeningHours.setOnClickListener(this);
final View cardMore = view.findViewById(R.id.cv__more);
mDescription = findInput(cardMore);
cardMore.findViewById(R.id.about_osm).setOnClickListener(this);
mReset = (TextView) view.findViewById(R.id.reset);
mReset = view.findViewById(R.id.reset);
mReset.setOnClickListener(this);
mDetailsBlocks.append(OsmProps.OpeningHours.ordinal(), blockOpeningHours);
@ -486,7 +486,7 @@ public class EditorFragment extends BaseMwmFragment implements View.OnClickListe
private static EditText findInputAndInitBlock(View blockWithInput, @DrawableRes int icon, String hint)
{
((ImageView) blockWithInput.findViewById(R.id.icon)).setImageResource(icon);
final TextInputLayout input = (TextInputLayout) blockWithInput.findViewById(R.id.custom_input);
final TextInputLayout input = blockWithInput.findViewById(R.id.custom_input);
input.setHint(hint);
return (EditText) input.findViewById(R.id.input);
}

View file

@ -126,7 +126,7 @@ public class HoursMinutesPickerFragment extends BaseMwmDialogFragment
@SuppressLint("InflateParams")
final View root = inflater.inflate(R.layout.fragment_timetable_picker, null);
mPicker = (TimePicker) root.findViewById(R.id.picker);
mPicker = root.findViewById(R.id.picker);
mPicker.setIs24HourView(DateFormat.is24HourFormat(getActivity()));
int id = getResources().getIdentifier("hours", "id", "android");
@ -137,7 +137,7 @@ public class HoursMinutesPickerFragment extends BaseMwmDialogFragment
mPickerHoursLabel = null;
}
mTabs = (TabLayout) root.findViewById(R.id.tabs);
mTabs = root.findViewById(R.id.tabs);
TextView tabView = (TextView) inflater.inflate(R.layout.tab_timepicker, mTabs, false);
// TODO @yunik add translations
tabView.setText("From");

View file

@ -97,8 +97,8 @@ public class MultilanguageAdapter extends RecyclerView.Adapter<MultilanguageAdap
public Holder(View itemView)
{
super(itemView);
input = (EditText) itemView.findViewById(R.id.input);
inputLayout = (TextInputLayout) itemView.findViewById(R.id.input_layout);
input = itemView.findViewById(R.id.input);
inputLayout = itemView.findViewById(R.id.input_layout);
input.addTextChangedListener(new StringUtils.SimpleTextWatcher()
{
@Override

View file

@ -68,13 +68,13 @@ public class OsmAuthFragment extends BaseMwmToolbarFragment implements View.OnCl
};
mDelegate.onViewCreated(view, savedInstanceState);
getToolbarController().setTitle(R.string.login);
mEtLogin = (EditText) view.findViewById(R.id.osm_username);
mEtPassword = (EditText) view.findViewById(R.id.osm_password);
mTvLogin = (TextView) view.findViewById(R.id.login);
mEtLogin = view.findViewById(R.id.osm_username);
mEtPassword = view.findViewById(R.id.osm_password);
mTvLogin = view.findViewById(R.id.login);
mTvLogin.setOnClickListener(this);
mTvLostPassword = view.findViewById(R.id.lost_password);
mTvLostPassword.setOnClickListener(this);
mProgress = (ProgressBar) view.findViewById(R.id.osm_login_progress);
mProgress = view.findViewById(R.id.osm_login_progress);
mProgress.getIndeterminateDrawable().setColorFilter(new LightingColorFilter(0xFF000000, 0xFFFFFF));
UiUtils.hide(mProgress);
}

View file

@ -98,11 +98,11 @@ public class ProfileFragment extends AuthFragment implements View.OnClickListene
View editsBlock = view.findViewById(R.id.block_edits);
UiUtils.show(editsBlock);
mSentBlock = editsBlock.findViewById(R.id.sent_edits);
mEditsSent = (TextView) mSentBlock.findViewById(R.id.edits_count);
mEditsSentDate = (TextView) mSentBlock.findViewById(R.id.date_sent);
mEditsSent = mSentBlock.findViewById(R.id.edits_count);
mEditsSentDate = mSentBlock.findViewById(R.id.date_sent);
mAuthBlock = view.findViewById(R.id.block_auth);
mRatingBlock = view.findViewById(R.id.block_rating);
mEditorRank = (TextView) mRatingBlock.findViewById(R.id.rating);
mEditorRank = mRatingBlock.findViewById(R.id.rating);
// FIXME show when it will be implemented on server
// mEditorLevelUp = mRatingBlock.findViewById(R.id.level_up_feat);
view.findViewById(R.id.about_osm).setOnClickListener(this);

View file

@ -46,7 +46,7 @@ public class ReportFragment extends BaseMwmToolbarFragment implements View.OnCli
// mSimpleProblems.findViewById(R.id.problem_duplicated_place).setOnClickListener(this);
mSimpleProblems.findViewById(R.id.problem_other).setOnClickListener(this);
mAdvancedProblem = view.findViewById(R.id.ll__other_problem);
mProblemInput = (EditText) mAdvancedProblem.findViewById(R.id.input);
mProblemInput = mAdvancedProblem.findViewById(R.id.input);
refreshProblems();
}

View file

@ -204,21 +204,21 @@ class SimpleTimetableAdapter extends RecyclerView.Adapter<SimpleTimetableAdapter
allday = itemView.findViewById(R.id.allday);
allday.setOnClickListener(this);
swAllday = (SwitchCompat) allday.findViewById(R.id.sw__allday);
swAllday = allday.findViewById(R.id.sw__allday);
schedule = itemView.findViewById(R.id.schedule);
openClose = schedule.findViewById(R.id.time_open_close);
open = openClose.findViewById(R.id.time_open);
open.setOnClickListener(this);
close = openClose.findViewById(R.id.time_close);
close.setOnClickListener(this);
tvOpen = (TextView) open.findViewById(R.id.tv__time_open);
tvClose = (TextView) close.findViewById(R.id.tv__time_close);
tvOpen = open.findViewById(R.id.tv__time_open);
tvClose = close.findViewById(R.id.tv__time_close);
addClosed = schedule.findViewById(R.id.tv__add_closed);
addClosed.setOnClickListener(this);
deleteTimetable = itemView.findViewById(R.id.tv__remove_timetable);
deleteTimetable.setOnClickListener(this);
final ViewGroup closedHost = (ViewGroup) itemView.findViewById(R.id.closed_host);
final ViewGroup closedHost = itemView.findViewById(R.id.closed_host);
for (int i = 0; i < MAX_CLOSED_SPANS; i++)
{
final View span = LayoutInflater
@ -341,7 +341,7 @@ class SimpleTimetableAdapter extends RecyclerView.Adapter<SimpleTimetableAdapter
private void addDay(@IntRange(from = 1, to = 7) final int dayIndex, @IdRes int id)
{
final View day = itemView.findViewById(id);
final CheckBox checkBox = (CheckBox) day.findViewById(R.id.chb__day);
final CheckBox checkBox = day.findViewById(R.id.chb__day);
// Save index of the day to get it back when checkbox will be toggled.
checkBox.setTag(dayIndex);
days.put(dayIndex, checkBox);
@ -381,7 +381,7 @@ class SimpleTimetableAdapter extends RecyclerView.Adapter<SimpleTimetableAdapter
AddTimetableViewHolder(View itemView)
{
super(itemView);
mAdd = (Button) itemView.findViewById(R.id.btn__add_time);
mAdd = itemView.findViewById(R.id.btn__add_time);
mAdd.setOnClickListener(new View.OnClickListener()
{
@Override

View file

@ -88,9 +88,9 @@ public class StreetAdapter extends RecyclerView.Adapter<StreetAdapter.BaseViewHo
public StreetViewHolder(View itemView)
{
super(itemView);
streetDef = (TextView) itemView.findViewById(R.id.street_default);
streetLoc = (TextView) itemView.findViewById(R.id.street_localized);
selected = (CompoundButton) itemView.findViewById(R.id.selected);
streetDef = itemView.findViewById(R.id.street_default);
streetLoc = itemView.findViewById(R.id.street_localized);
selected = itemView.findViewById(R.id.selected);
itemView.setOnClickListener(this);
selected.setOnClickListener(new View.OnClickListener()
{

View file

@ -50,7 +50,7 @@ public class StreetFragment extends BaseMwmRecyclerFragment<StreetAdapter>
@NonNull
public LocalizedStreet getStreet()
{
return ((StreetAdapter) getAdapter()).getSelectedStreet();
return getAdapter().getSelectedStreet();
}
protected void saveStreet(LocalizedStreet street)

View file

@ -51,7 +51,7 @@ public class ViralFragment extends BaseMwmDialogFragment
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState)
{
super.onViewCreated(view, savedInstanceState);
TextView viralTextView = (TextView) view.findViewById(R.id.viral);
TextView viralTextView = view.findViewById(R.id.viral);
Context context = requireContext();
String viralChangesMsg = context.getString(R.string.editor_done_dialog_1);

View file

@ -67,17 +67,17 @@ public class FullScreenGalleryActivity extends BaseMwmFragmentActivity
displayToolbarAsActionBar();
mUserBlock = findViewById(R.id.rl__user_block);
mDescription = (TextView) findViewById(R.id.tv__description);
mUserName = (TextView) findViewById(R.id.tv__name);
mSource = (TextView) findViewById(R.id.tv__source);
mDate = (TextView) findViewById(R.id.tv__date);
mAvatar = (ImageView) findViewById(R.id.iv__avatar);
mDescription = findViewById(R.id.tv__description);
mUserName = findViewById(R.id.tv__name);
mSource = findViewById(R.id.tv__source);
mDate = findViewById(R.id.tv__date);
mAvatar = findViewById(R.id.iv__avatar);
readParameters();
if (mImages != null)
{
mGalleryPageAdapter = new GalleryPageAdapter(getSupportFragmentManager(), mImages);
final ViewPager viewPager = (ViewPager) findViewById(R.id.vp__image);
final ViewPager viewPager = findViewById(R.id.vp__image);
viewPager.addOnPageChangeListener(this);
viewPager.setAdapter(mGalleryPageAdapter);
viewPager.setCurrentItem(mPosition);

View file

@ -38,7 +38,7 @@ public class FullScreenGalleryFragment extends BaseMwmFragment
if (mImage != null)
{
ImageView imageView = (ImageView) view.findViewById(R.id.iv__image);
ImageView imageView = view.findViewById(R.id.iv__image);
final View progress = view.findViewById(R.id.pb__loading_image);
Glide.with(view.getContext())
.load(mImage.getUrl())

View file

@ -40,7 +40,7 @@ public class GalleryFragment extends BaseMwmFragment implements RecyclerClickLis
if (mImages != null)
{
RecyclerView rvGallery = (RecyclerView) view.findViewById(R.id.rv__gallery);
RecyclerView rvGallery = view.findViewById(R.id.rv__gallery);
rvGallery.setLayoutManager(new GridLayoutManager(getContext(), NUM_COLUMNS));
rvGallery.setAdapter(new ImageAdapter(mImages, this));
Drawable divider = ContextCompat.getDrawable(getContext(), R.drawable.divider_transparent_quarter);

View file

@ -102,9 +102,9 @@ public class Holders
@Nullable ItemSelectedListener<Items.LocalExpertItem> listener)
{
super(itemView, items, listener);
mAvatar = (ImageView) itemView.findViewById(R.id.avatar);
mRating = (RatingView) itemView.findViewById(R.id.ratingView);
mButton = (TextView) itemView.findViewById(R.id.button);
mAvatar = itemView.findViewById(R.id.avatar);
mRating = itemView.findViewById(R.id.ratingView);
mButton = itemView.findViewById(R.id.button);
}
@Override
@ -362,8 +362,8 @@ public class Holders
@Nullable ItemSelectedListener<Items.Item> listener)
{
super(itemView, items, listener);
mProgressBar = (ProgressBar) itemView.findViewById(R.id.pb__progress);
mSubtitle = (TextView) itemView.findViewById(R.id.tv__subtitle);
mProgressBar = itemView.findViewById(R.id.pb__progress);
mSubtitle = itemView.findViewById(R.id.tv__subtitle);
}
@CallSuper

View file

@ -57,7 +57,7 @@ class ImageAdapter extends RecyclerView.Adapter<ImageAdapter.ViewHolder>
super(itemView);
mListener = listener;
itemView.setOnClickListener(this);
mImage = (ImageView) itemView.findViewById(R.id.iv__image);
mImage = itemView.findViewById(R.id.iv__image);
}
@Override

View file

@ -46,7 +46,7 @@ abstract class SingleItemAdapterStrategy<T extends Holders.BaseViewHolder<Items.
protected T createViewHolder(@NonNull ViewGroup parent, int viewType)
{
View itemView = inflateView(LayoutInflater.from(parent.getContext()), parent);
TextView button = (TextView) itemView.findViewById(R.id.button);
TextView button = itemView.findViewById(R.id.button);
button.setText(getLabelForDetailsView());
return createViewHolder(itemView);
}

View file

@ -298,7 +298,7 @@ public abstract class BaseNewsFragment extends BaseMwmDialogFragment
View content = View.inflate(getActivity(), R.layout.fragment_news, null);
res.setContentView(content);
mPager = (ViewPager)content.findViewById(R.id.pager);
mPager = content.findViewById(R.id.pager);
fixPagerSize();
Adapter adapter = createAdapter();
@ -313,7 +313,7 @@ public abstract class BaseNewsFragment extends BaseMwmDialogFragment
}
});
ViewGroup dots = (ViewGroup)content.findViewById(R.id.dots);
ViewGroup dots = content.findViewById(R.id.dots);
if (mPageCount == 1)
UiUtils.hide(dots);
else

View file

@ -98,13 +98,13 @@ abstract class BasePermissionsDialogFragment extends BaseMwmDialogFragment
if (button != null)
button.setOnClickListener(this::onContinueBtnClicked);
ImageView image = (ImageView) content.findViewById(R.id.iv__image);
ImageView image = content.findViewById(R.id.iv__image);
if (image != null)
image.setImageResource(getImageRes());
TextView title = (TextView) content.findViewById(R.id.tv__title);
TextView title = content.findViewById(R.id.tv__title);
if (title != null)
title.setText(getTitleRes());
TextView subtitle = (TextView) content.findViewById(R.id.tv__subtitle1);
TextView subtitle = content.findViewById(R.id.tv__subtitle1);
if (subtitle != null)
subtitle.setText(getSubtitleRes());

View file

@ -124,7 +124,7 @@ class PermissionsAdapter extends RecyclerView.Adapter<PermissionsAdapter.ViewHol
{
super(itemView);
mTitle = (TextView) itemView.findViewById(R.id.tv__title);
mTitle = itemView.findViewById(R.id.tv__title);
}
@Override
@ -143,9 +143,9 @@ class PermissionsAdapter extends RecyclerView.Adapter<PermissionsAdapter.ViewHol
PermissionViewHolder(@NonNull View itemView)
{
super(itemView);
mIcon = (ImageView) itemView.findViewById(R.id.iv__permission_icon);
mTitle = (TextView) itemView.findViewById(R.id.tv__permission_title);
mMessage = (TextView) itemView.findViewById(R.id.tv__permission_message);
mIcon = itemView.findViewById(R.id.iv__permission_icon);
mTitle = itemView.findViewById(R.id.tv__permission_title);
mMessage = itemView.findViewById(R.id.tv__permission_message);
}
@Override
@ -164,7 +164,7 @@ class PermissionsAdapter extends RecyclerView.Adapter<PermissionsAdapter.ViewHol
NoteViewHolder(@NonNull View itemView)
{
super(itemView);
mMessage = (TextView) itemView.findViewById(R.id.tv__note);
mMessage = itemView.findViewById(R.id.tv__note);
}
@Override

View file

@ -44,7 +44,7 @@ public class PermissionsDetailDialogFragment extends BasePermissionsDialogFragme
public Dialog onCreateDialog(Bundle savedInstanceState)
{
Dialog res = super.onCreateDialog(savedInstanceState);
RecyclerView permissions = (RecyclerView) res.findViewById(R.id.rv__permissions);
RecyclerView permissions = res.findViewById(R.id.rv__permissions);
permissions.setLayoutManager(new LinearLayoutManager(getContext(),
LinearLayoutManager.VERTICAL, false));
permissions.setAdapter(new PermissionsAdapter());

View file

@ -75,10 +75,10 @@ public class StoragePermissionsDialogFragment extends BaseMwmDialogFragment impl
declineBtn.setOnClickListener(this);
declineBtn.setText(R.string.back);
ImageView image = (ImageView) content.findViewById(R.id.iv__image);
TextView title = (TextView) content.findViewById(R.id.tv__title);
ImageView image = content.findViewById(R.id.iv__image);
TextView title = content.findViewById(R.id.tv__title);
title.setText(R.string.onboarding_storage_permissions_title);
TextView subtitle = (TextView) content.findViewById(R.id.tv__subtitle1);
TextView subtitle = content.findViewById(R.id.tv__subtitle1);
subtitle.setText(R.string.onboarding_storage_permissions_message);
return res;

View file

@ -136,13 +136,13 @@ class ReviewAdapter extends RecyclerView.Adapter<ReviewAdapter.BaseViewHolder>
{
super(itemView, listener);
mDivider = itemView.findViewById(R.id.v__divider);
mUserName = (TextView) itemView.findViewById(R.id.tv__user_name);
mCommentDate = (TextView) itemView.findViewById(R.id.tv__comment_date);
mRating = (TextView) itemView.findViewById(R.id.tv__user_rating);
mUserName = itemView.findViewById(R.id.tv__user_name);
mCommentDate = itemView.findViewById(R.id.tv__comment_date);
mRating = itemView.findViewById(R.id.tv__user_rating);
mPositiveReview = itemView.findViewById(R.id.ll__positive_review);
mTvPositiveReview = (TextView) itemView.findViewById(R.id.tv__positive_review);
mTvPositiveReview = itemView.findViewById(R.id.tv__positive_review);
mNegativeReview = itemView.findViewById(R.id.ll__negative_review);
mTvNegativeReview = (TextView) itemView.findViewById(R.id.tv__negative_review);
mTvNegativeReview = itemView.findViewById(R.id.tv__negative_review);
}
@Override
@ -192,8 +192,8 @@ class ReviewAdapter extends RecyclerView.Adapter<ReviewAdapter.BaseViewHolder>
RatingHolder(View itemView, RecyclerClickListener listener)
{
super(itemView, listener);
mHotelRating = (TextView) itemView.findViewById(R.id.tv__place_hotel_rating);
mHotelRatingBase = (TextView) itemView.findViewById(R.id.tv__place_hotel_rating_base);
mHotelRating = itemView.findViewById(R.id.tv__place_hotel_rating);
mHotelRatingBase = itemView.findViewById(R.id.tv__place_hotel_rating_base);
}
public void bind(String rating, int ratingBase)

View file

@ -42,7 +42,7 @@ public class ReviewFragment extends BaseMwmFragment implements RecyclerClickList
if (mItems != null && mRating != null)
{
RecyclerView rvGallery = (RecyclerView) view.findViewById(R.id.rv__review);
RecyclerView rvGallery = view.findViewById(R.id.rv__review);
rvGallery.setLayoutManager(new LinearLayoutManager(getContext(), LinearLayoutManager.VERTICAL, false));
rvGallery.setAdapter(new ReviewAdapter(mItems, this, mRating, mRatingBase));
}

View file

@ -105,7 +105,7 @@ abstract class BaseRoutingErrorDialogFragment extends BaseMwmDialogFragment
final View countryView = View.inflate(getActivity(), R.layout.dialog_missed_map, null);
((TextView) countryView.findViewById(R.id.tv__title)).setText(map.name);
final TextView szView = (TextView) countryView.findViewById(R.id.tv__size);
final TextView szView = countryView.findViewById(R.id.tv__size);
szView.setText(StringUtils.getFileSizeString(requireContext(), map.totalSize));
ViewGroup.MarginLayoutParams lp = (ViewGroup.MarginLayoutParams) szView.getLayoutParams();
lp.rightMargin = 0;
@ -119,7 +119,7 @@ abstract class BaseRoutingErrorDialogFragment extends BaseMwmDialogFragment
@SuppressLint("InflateParams")
final View countriesView = View.inflate(getActivity(), R.layout.dialog_missed_maps, null);
final ExpandableListView listView = (ExpandableListView) countriesView.findViewById(R.id.items_frame);
final ExpandableListView listView = countriesView.findViewById(R.id.items_frame);
if (mMissingMaps.isEmpty())
{
mCancelRoute = false;

View file

@ -124,15 +124,15 @@ public class NavigationController implements Application.ActivityLifecycleCallba
// Top frame
View topFrame = mFrame.findViewById(R.id.nav_top_frame);
View turnFrame = topFrame.findViewById(R.id.nav_next_turn_frame);
mNextTurnImage = (ImageView) turnFrame.findViewById(R.id.turn);
mNextTurnDistance = (TextView) turnFrame.findViewById(R.id.distance);
mCircleExit = (TextView) turnFrame.findViewById(R.id.circle_exit);
mNextTurnImage = turnFrame.findViewById(R.id.turn);
mNextTurnDistance = turnFrame.findViewById(R.id.distance);
mCircleExit = turnFrame.findViewById(R.id.circle_exit);
mNextNextTurnFrame = topFrame.findViewById(R.id.nav_next_next_turn_frame);
mNextNextTurnImage = (ImageView) mNextNextTurnFrame.findViewById(R.id.turn);
mNextNextTurnImage = mNextNextTurnFrame.findViewById(R.id.turn);
mStreetFrame = topFrame.findViewById(R.id.street_frame);
mNextStreet = (TextView) mStreetFrame.findViewById(R.id.street);
mNextStreet = mStreetFrame.findViewById(R.id.street);
View shadow = topFrame.findViewById(R.id.shadow_top);
UiUtils.hide(shadow);
@ -141,23 +141,23 @@ public class NavigationController implements Application.ActivityLifecycleCallba
// Bottom frame
mSpeedViewContainer = mBottomFrame.findViewById(R.id.speed_view_container);
mSpeedValue = (TextView) mBottomFrame.findViewById(R.id.speed_value);
mSpeedUnits = (TextView) mBottomFrame.findViewById(R.id.speed_dimen);
mTimeHourValue = (TextView) mBottomFrame.findViewById(R.id.time_hour_value);
mTimeHourUnits = (TextView) mBottomFrame.findViewById(R.id.time_hour_dimen);
mTimeMinuteValue = (TextView) mBottomFrame.findViewById(R.id.time_minute_value);
mTimeMinuteUnits = (TextView) mBottomFrame.findViewById(R.id.time_minute_dimen);
mDotTimeArrival = (ImageView) mBottomFrame.findViewById(R.id.dot_estimate);
mDotTimeLeft = (ImageView) mBottomFrame.findViewById(R.id.dot_left);
mDistanceValue = (TextView) mBottomFrame.findViewById(R.id.distance_value);
mDistanceUnits = (TextView) mBottomFrame.findViewById(R.id.distance_dimen);
mRouteProgress = (FlatProgressView) mBottomFrame.findViewById(R.id.navigation_progress);
mSpeedValue = mBottomFrame.findViewById(R.id.speed_value);
mSpeedUnits = mBottomFrame.findViewById(R.id.speed_dimen);
mTimeHourValue = mBottomFrame.findViewById(R.id.time_hour_value);
mTimeHourUnits = mBottomFrame.findViewById(R.id.time_hour_dimen);
mTimeMinuteValue = mBottomFrame.findViewById(R.id.time_minute_value);
mTimeMinuteUnits = mBottomFrame.findViewById(R.id.time_minute_dimen);
mDotTimeArrival = mBottomFrame.findViewById(R.id.dot_estimate);
mDotTimeLeft = mBottomFrame.findViewById(R.id.dot_left);
mDistanceValue = mBottomFrame.findViewById(R.id.distance_value);
mDistanceUnits = mBottomFrame.findViewById(R.id.distance_dimen);
mRouteProgress = mBottomFrame.findViewById(R.id.navigation_progress);
mSearchButtonFrame = activity.findViewById(R.id.search_button_frame);
mSearchWheel = new SearchWheel(mSearchButtonFrame);
mOnboardingBtn = activity.findViewById(R.id.onboarding_btn);
ImageView bookmarkButton = (ImageView) mSearchButtonFrame.findViewById(R.id.btn_bookmarks);
ImageView bookmarkButton = mSearchButtonFrame.findViewById(R.id.btn_bookmarks);
bookmarkButton.setImageDrawable(Graphics.tint(bookmarkButton.getContext(),
R.drawable.ic_menu_bookmarks));
bookmarkButton.setOnClickListener(this);

View file

@ -140,12 +140,12 @@ final class RoutingBottomMenuController implements View.OnClickListener
mAltitudeDifference = altitudeDifference;
mNumbersFrame = numbersFrame;
mActionFrame = actionFrame;
mActionMessage = (TextView) actionFrame.findViewById(R.id.tv__message);
mActionMessage = actionFrame.findViewById(R.id.tv__message);
mActionButton = actionFrame.findViewById(R.id.btn__my_position_use);
mActionButton.setOnClickListener(this);
View actionSearchButton = actionFrame.findViewById(R.id.btn__search_point);
actionSearchButton.setOnClickListener(this);
mActionIcon = (ImageView) mActionButton.findViewById(R.id.iv__icon);
mActionIcon = mActionButton.findViewById(R.id.iv__icon);
UiUtils.hide(mAltitudeChartFrame, mTaxiFrame, mActionFrame);
mListener = listener;
int dividerRes = ThemeUtils.getResource(mContext, R.attr.transitStepDivider);
@ -178,9 +178,9 @@ final class RoutingBottomMenuController implements View.OnClickListener
mTaxiInfo = info;
mTaxiProduct = products.get(0);
final PagerAdapter adapter = new TaxiAdapter(mContext, mTaxiInfo.getType(), products);
DotPager pager = new DotPager.Builder(mContext, (ViewPager) mTaxiFrame.findViewById(R.id.pager),
DotPager pager = new DotPager.Builder(mContext, mTaxiFrame.findViewById(R.id.pager),
adapter)
.setIndicatorContainer((ViewGroup) mTaxiFrame.findViewById(R.id.indicator))
.setIndicatorContainer(mTaxiFrame.findViewById(R.id.indicator))
.setPageChangedListener(new DotPager.OnPageChangedListener()
{
@Override
@ -201,7 +201,7 @@ final class RoutingBottomMenuController implements View.OnClickListener
UiUtils.hide(mError, mAltitudeChartFrame, mActionFrame, mAltitudeChartFrame, mTaxiFrame);
showStartButton(false);
UiUtils.show(mTransitFrame);
RecyclerView rv = (RecyclerView) mTransitFrame.findViewById(R.id.transit_recycler_view);
RecyclerView rv = mTransitFrame.findViewById(R.id.transit_recycler_view);
TransitStepAdapter adapter = new TransitStepAdapter();
rv.setLayoutManager(new MultilineLayoutManager());
rv.setNestedScrollingEnabled(false);
@ -210,12 +210,12 @@ final class RoutingBottomMenuController implements View.OnClickListener
rv.setAdapter(adapter);
adapter.setItems(info.getTransitSteps());
TextView totalTimeView = (TextView) mTransitFrame.findViewById(R.id.total_time);
totalTimeView.setText(RoutingController.formatRoutingTime(mContext, (int) info.getTotalTime(),
TextView totalTimeView = mTransitFrame.findViewById(R.id.total_time);
totalTimeView.setText(RoutingController.formatRoutingTime(mContext, info.getTotalTime(),
R.dimen.text_size_routing_number));
View dotView = mTransitFrame.findViewById(R.id.dot);
View pedestrianIcon = mTransitFrame.findViewById(R.id.pedestrian_icon);
TextView distanceView = (TextView) mTransitFrame.findViewById(R.id.total_distance);
TextView distanceView = mTransitFrame.findViewById(R.id.total_distance);
UiUtils.showIf(info.getTotalPedestrianTimeInSec() > 0, dotView, pedestrianIcon, distanceView);
distanceView.setText(info.getTotalPedestrianDistance() + " " + info.getTotalPedestrianDistanceUnits());
}
@ -369,10 +369,10 @@ final class RoutingBottomMenuController implements View.OnClickListener
}
Spanned spanned = makeSpannedRoutingDetails(mContext, rinfo);
TextView numbersTime = (TextView) mNumbersFrame.findViewById(R.id.time);
TextView numbersTime = mNumbersFrame.findViewById(R.id.time);
numbersTime.setText(spanned);
TextView numbersArrival = (TextView) mNumbersFrame.findViewById(R.id.arrival);
TextView numbersArrival = mNumbersFrame.findViewById(R.id.arrival);
if (numbersArrival != null)
{
String arrivalTime = RoutingController.formatArrivalTime(rinfo.totalTimeInSeconds);

View file

@ -49,7 +49,7 @@ public class RoutingErrorDialogFragment extends BaseRoutingErrorDialogFragment
private View addMessage(View frame)
{
UiUtils.setTextAndHideIfEmpty((TextView)frame.findViewById(R.id.tv__message), mMessage);
UiUtils.setTextAndHideIfEmpty(frame.findViewById(R.id.tv__message), mMessage);
return frame;
}

View file

@ -50,7 +50,7 @@ public class RoutingMapsDownloadFragment extends BaseRoutingErrorDialogFragment
private View setupFrame(View frame)
{
UiUtils.hide(frame.findViewById(R.id.tv__message));
mItemsFrame = (ViewGroup) frame.findViewById(R.id.items_frame);
mItemsFrame = frame.findViewById(R.id.items_frame);
return frame;
}
@ -77,7 +77,7 @@ public class RoutingMapsDownloadFragment extends BaseRoutingErrorDialogFragment
if (frame == null)
return null;
WheelProgressView res = (WheelProgressView) frame.findViewById(R.id.wheel_progress);
WheelProgressView res = frame.findViewById(R.id.wheel_progress);
return ((res != null && UiUtils.isVisible(res)) ? res : null);
}
@ -96,7 +96,7 @@ public class RoutingMapsDownloadFragment extends BaseRoutingErrorDialogFragment
@Override
void bindGroup(View view)
{
WheelProgressView wheel = (WheelProgressView) view.findViewById(R.id.wheel_progress);
WheelProgressView wheel = view.findViewById(R.id.wheel_progress);
UiUtils.show(wheel);
updateWheel(wheel);
}

View file

@ -70,7 +70,7 @@ public class RoutingPlanController extends ToolbarController
button.deactivate();
};
RoutingToolbarButton rb = (RoutingToolbarButton) mRouterTypes.findViewById(buttonId);
RoutingToolbarButton rb = mRouterTypes.findViewById(buttonId);
listener.onCheckedChanged(rb, false);
rb.setOnCheckedChangeListener(listener);
rb.setOnClickListener(clickListener);
@ -85,15 +85,15 @@ public class RoutingPlanController extends ToolbarController
mFrame = root;
mRoutingPlanListener = routingPlanListener;
mRouterTypes = (RadioGroup) getToolbar().findViewById(R.id.route_type);
mRouterTypes = getToolbar().findViewById(R.id.route_type);
setupRouterButtons();
View progressFrame = getToolbar().findViewById(R.id.progress_frame);
mProgressVehicle = (WheelProgressView) progressFrame.findViewById(R.id.progress_vehicle);
mProgressPedestrian = (WheelProgressView) progressFrame.findViewById(R.id.progress_pedestrian);
mProgressTransit = (WheelProgressView) progressFrame.findViewById(R.id.progress_transit);
mProgressBicycle = (WheelProgressView) progressFrame.findViewById(R.id.progress_bicycle);
mProgressVehicle = progressFrame.findViewById(R.id.progress_vehicle);
mProgressPedestrian = progressFrame.findViewById(R.id.progress_pedestrian);
mProgressTransit = progressFrame.findViewById(R.id.progress_transit);
mProgressBicycle = progressFrame.findViewById(R.id.progress_bicycle);
// mProgressTaxi = (WheelProgressView) progressFrame.findViewById(R.id.progress_taxi);
mRoutingBottomMenuController = RoutingBottomMenuController.newInstance(requireActivity(), mFrame, listener);
@ -227,7 +227,7 @@ public class RoutingPlanController extends ToolbarController
progressView = mProgressBicycle;
}
RoutingToolbarButton button = (RoutingToolbarButton)mRouterTypes
RoutingToolbarButton button = mRouterTypes
.findViewById(mRouterTypes.getCheckedRadioButtonId());
button.progress();
@ -293,7 +293,7 @@ public class RoutingPlanController extends ToolbarController
{
@IdRes
int checkedId = mRouterTypes.getCheckedRadioButtonId();
RoutingToolbarButton rb = (RoutingToolbarButton) mRouterTypes.findViewById(checkedId);
RoutingToolbarButton rb = mRouterTypes.findViewById(checkedId);
rb.error();
showError(R.string.dialog_taxi_offline);
}

View file

@ -106,7 +106,7 @@ class SearchWheel implements View.OnClickListener
mTouchInterceptor = mFrame.findViewById(R.id.touch_interceptor);
mTouchInterceptor.setOnClickListener(this);
mSearchButton = (ImageView) mFrame.findViewById(R.id.btn_search);
mSearchButton = mFrame.findViewById(R.id.btn_search);
mSearchButton.setOnClickListener(this);
mSearchLayout = mFrame.findViewById(R.id.search_frame);
if (UiUtils.isLandscape(mFrame.getContext()))

View file

@ -90,7 +90,7 @@ class HotelsTypeAdapter extends RecyclerView.Adapter<HotelsTypeAdapter.HotelsTyp
mFrame = itemView;
mItems = items;
mListener = listener;
mTitle = (TextView) itemView.findViewById(R.id.tv__tag);
mTitle = itemView.findViewById(R.id.tv__tag);
mFrame.setOnClickListener(this);
}

View file

@ -119,13 +119,13 @@ public class PriceFilterView extends LinearLayout implements View.OnClickListene
View low = findViewById(R.id.low);
low.setOnClickListener(this);
mItems.append(R.id.low, new Item(low, (TextView) findViewById(R.id.low_title)));
mItems.append(R.id.low, new Item(low, findViewById(R.id.low_title)));
View medium = findViewById(R.id.medium);
medium.setOnClickListener(this);
mItems.append(R.id.medium, new Item(medium, (TextView) findViewById(R.id.medium_title)));
mItems.append(R.id.medium, new Item(medium, findViewById(R.id.medium_title)));
View high = findViewById(R.id.high);
high.setOnClickListener(this);
mItems.append(R.id.high, new Item(high, (TextView) findViewById(R.id.high_title)));
mItems.append(R.id.high, new Item(high, findViewById(R.id.high_title)));
}
public void update(@Nullable HotelsFilter filter)

View file

@ -41,7 +41,7 @@ public class SearchHistoryFragment extends BaseMwmRecyclerFragment<SearchHistory
{
super.onViewCreated(view, savedInstanceState);
getRecyclerView().setLayoutManager(new LinearLayoutManager(view.getContext()));
mPlaceHolder = (PlaceholderView) view.findViewById(R.id.placeholder);
mPlaceHolder = view.findViewById(R.id.placeholder);
mPlaceHolder.setContent(R.string.search_history_title, R.string.search_history_text);
getAdapter().registerAdapterDataObserver(new RecyclerView.AdapterDataObserver()

View file

@ -306,8 +306,8 @@ public class SettingsPrefsFragment extends BaseXmlSettingsFragment
super.onViewCreated(view, savedInstanceState);
mPreferenceScreen = getPreferenceScreen();
mStoragePref = findPreference(getString(R.string.pref_storage));
mPrefEnabled = (TwoStatePreference) findPreference(getString(R.string.pref_tts_enabled));
mPrefLanguages = (ListPreference) findPreference(getString(R.string.pref_tts_language));
mPrefEnabled = findPreference(getString(R.string.pref_tts_enabled));
mPrefLanguages = findPreference(getString(R.string.pref_tts_language));
mLangInfo = findPreference(getString(R.string.pref_tts_info));
mLangInfoLink = findPreference(getString(R.string.pref_tts_info_link));
initLangInfoLink();
@ -337,7 +337,7 @@ public class SettingsPrefsFragment extends BaseXmlSettingsFragment
private void initSpeedCamerasPrefs()
{
String key = getString(R.string.pref_speed_cameras);
final ListPreference pref = (ListPreference) findPreference(key);
final ListPreference pref = findPreference(key);
if (pref == null)
return;
pref.setSummary(pref.getEntry());
@ -472,7 +472,7 @@ public class SettingsPrefsFragment extends BaseXmlSettingsFragment
private void initUseMobileDataPrefsCallbacks()
{
final ListPreference mobilePref = (ListPreference)findPreference(
final ListPreference mobilePref = findPreference(
getString(R.string.pref_use_mobile_data));
if (mobilePref == null)
return;
@ -525,7 +525,7 @@ public class SettingsPrefsFragment extends BaseXmlSettingsFragment
private void initPowerManagementPrefsCallbacks()
{
final ListPreference powerManagementPref = (ListPreference)findPreference(
final ListPreference powerManagementPref = findPreference(
getString(R.string.pref_power_management));
if (powerManagementPref == null)
return;
@ -575,7 +575,7 @@ public class SettingsPrefsFragment extends BaseXmlSettingsFragment
private void initAutoZoomPrefsCallbacks()
{
final TwoStatePreference pref = (TwoStatePreference)findPreference(getString(R.string.pref_auto_zoom));
final TwoStatePreference pref = findPreference(getString(R.string.pref_auto_zoom));
if (pref == null)
return;
@ -625,7 +625,7 @@ public class SettingsPrefsFragment extends BaseXmlSettingsFragment
private void initTrackRecordPrefsCallbacks()
{
final ListPreference trackPref = (ListPreference)findPreference(getString(R.string.pref_track_record));
final ListPreference trackPref = findPreference(getString(R.string.pref_track_record));
final Preference pref = findPreference(getString(R.string.pref_track_record_time));
final Preference root = findPreference(getString(R.string.pref_track_screen));
if (trackPref == null || pref == null)
@ -687,7 +687,7 @@ public class SettingsPrefsFragment extends BaseXmlSettingsFragment
private void init3dModePrefsCallbacks()
{
final TwoStatePreference pref = (TwoStatePreference)findPreference(getString(R.string.pref_3d_buildings));
final TwoStatePreference pref = findPreference(getString(R.string.pref_3d_buildings));
if (pref == null)
return;
@ -709,7 +709,7 @@ public class SettingsPrefsFragment extends BaseXmlSettingsFragment
private void initPerspectivePrefsCallbacks()
{
final TwoStatePreference pref = (TwoStatePreference)findPreference(getString(R.string.pref_3d));
final TwoStatePreference pref = findPreference(getString(R.string.pref_3d));
if (pref == null)
return;
@ -731,7 +731,7 @@ public class SettingsPrefsFragment extends BaseXmlSettingsFragment
private void initAutoDownloadPrefsCallbacks()
{
TwoStatePreference pref = (TwoStatePreference)findPreference(getString(R.string.pref_autodownload));
TwoStatePreference pref = findPreference(getString(R.string.pref_autodownload));
if (pref == null)
return;
@ -754,7 +754,7 @@ public class SettingsPrefsFragment extends BaseXmlSettingsFragment
private void initBackupBookmarksPrefsCallbacks()
{
TwoStatePreference pref = (TwoStatePreference)findPreference(getString(R.string.pref_backupbookmarks));
TwoStatePreference pref = findPreference(getString(R.string.pref_backupbookmarks));
if (pref == null)
return;
@ -774,7 +774,7 @@ public class SettingsPrefsFragment extends BaseXmlSettingsFragment
private void initMapStylePrefsCallbacks()
{
final ListPreference pref = (ListPreference)findPreference(getString(R.string.pref_map_style));
final ListPreference pref = findPreference(getString(R.string.pref_map_style));
if (pref == null)
return;
@ -880,7 +880,7 @@ public class SettingsPrefsFragment extends BaseXmlSettingsFragment
private void removePreference(@NonNull String categoryKey, @NonNull Preference preference)
{
PreferenceCategory category = (PreferenceCategory) findPreference(categoryKey);
PreferenceCategory category = findPreference(categoryKey);
if (category == null)
return;

View file

@ -39,8 +39,8 @@ public class StoragePathFragment extends BaseSettingsFragment
{
View root = super.onCreateView(inflater, container, savedInstanceState);
mHeader = (TextView) root.findViewById(R.id.header);
mList = (ListView) root.findViewById(R.id.list);
mHeader = root.findViewById(R.id.header);
mList = root.findViewById(R.id.list);
mList.setOnItemClickListener(new AdapterView.OnItemClickListener()
{
@Override

View file

@ -49,11 +49,11 @@ public class TaxiAdapter extends PagerAdapter
TaxiInfo.Product product = mProducts.get(position);
View v = LayoutInflater.from(mContext).inflate(R.layout.taxi_pager_item, container, false);
TextView name = (TextView) v.findViewById(R.id.product_name);
TextView name = v.findViewById(R.id.product_name);
boolean isApproxPrice = mType.isPriceApproximated();
name.setText(isApproxPrice ? mContext.getString(mType.getTitle()) : product.getName());
String separator = UiUtils.PHRASE_SEPARATOR + (isApproxPrice ? UiUtils.APPROXIMATE_SYMBOL : "");
TextView timeAndPriceView = (TextView) v.findViewById(R.id.arrival_time_price);
TextView timeAndPriceView = v.findViewById(R.id.arrival_time_price);
int time = Integer.parseInt(product.getTime());
CharSequence waitTime = RoutingController.formatRoutingTime(mContext, time,
R.dimen.text_size_body_3);

View file

@ -102,11 +102,11 @@ public class UGCController implements View.OnClickListener, UGC.ReceiveUGCListen
mUgcAddRatingView.findViewById(R.id.ll__normal).setOnClickListener(this);
mUgcAddRatingView.findViewById(R.id.ll__good).setOnClickListener(this);
mUgcAddRatingView.findViewById(R.id.ll__excellent).setOnClickListener(this);
mReviewCount = (TextView) mPlacePage.findViewById(R.id.tv__review_count);
mLeaveReviewButton = (Button) mPlacePage.findViewById(R.id.leaveReview);
mReviewCount = mPlacePage.findViewById(R.id.tv__review_count);
mLeaveReviewButton = mPlacePage.findViewById(R.id.leaveReview);
mLeaveReviewButton.setOnClickListener(mLeaveReviewClickListener);
RecyclerView rvUGCReviews = (RecyclerView) mPlacePage.findViewById(R.id.rv__pp_ugc_reviews);
RecyclerView rvUGCReviews = mPlacePage.findViewById(R.id.rv__pp_ugc_reviews);
rvUGCReviews.setLayoutManager(new LinearLayoutManager(context));
rvUGCReviews.getLayoutManager().setAutoMeasureEnabled(true);
rvUGCReviews.addItemDecoration(
@ -117,7 +117,7 @@ public class UGCController implements View.OnClickListener, UGC.ReceiveUGCListen
mSummaryRootView = mPlacePage.findViewById(R.id.ll__summary_container);
View summaryRatingContainer = mSummaryRootView.findViewById(R.id.summary_rating_records);
RecyclerView rvRatingRecords = (RecyclerView) summaryRatingContainer.findViewById(R.id.rv__summary_rating_records);
RecyclerView rvRatingRecords = summaryRatingContainer.findViewById(R.id.rv__summary_rating_records);
rvRatingRecords.setLayoutManager(new LinearLayoutManager(context, LinearLayoutManager.HORIZONTAL, false));
rvRatingRecords.getLayoutManager().setAutoMeasureEnabled(true);
rvRatingRecords.setNestedScrollingEnabled(false);
@ -125,10 +125,10 @@ public class UGCController implements View.OnClickListener, UGC.ReceiveUGCListen
rvRatingRecords.addItemDecoration(
ItemDecoratorFactory.createRatingRecordDecorator(context, LinearLayoutManager.HORIZONTAL));
rvRatingRecords.setAdapter(mUGCRatingRecordsAdapter);
mSummaryReviewCount = (TextView) mSummaryRootView.findViewById(R.id.tv__review_count);
mSummaryReviewCount = mSummaryRootView.findViewById(R.id.tv__review_count);
mUserRatingRecordsContainer = mPlacePage.findViewById(R.id.user_rating_records);
RecyclerView userRatingRecords = (RecyclerView) mUserRatingRecordsContainer.findViewById(R.id.rv__summary_rating_records);
RecyclerView userRatingRecords = mUserRatingRecordsContainer.findViewById(R.id.rv__summary_rating_records);
userRatingRecords.setLayoutManager(new LinearLayoutManager(context, LinearLayoutManager.HORIZONTAL, false));
userRatingRecords.getLayoutManager().setAutoMeasureEnabled(true);
userRatingRecords.setNestedScrollingEnabled(false);
@ -228,7 +228,7 @@ public class UGCController implements View.OnClickListener, UGC.ReceiveUGCListen
private void setSummaryViews(@NonNull UGC ugc, @UGC.Impress int impress, @NonNull String rating)
{
RatingView ratingView = (RatingView) mSummaryRootView.findViewById(R.id.rv__summary_rating);
RatingView ratingView = mSummaryRootView.findViewById(R.id.rv__summary_rating);
ratingView.setRating(Impress.values()[impress], rating);
Context context = mPlacePage.getContext();
int reviewsCount = ugc.getBasedOnCount();

View file

@ -63,8 +63,8 @@ class UGCRatingAdapter extends RecyclerView.Adapter<UGCRatingAdapter.ViewHolder>
public ViewHolder(View itemView)
{
super(itemView);
mName = (TextView) itemView.findViewById(R.id.tv__name);
mBar = (RatingBar) itemView.findViewById(R.id.rb__rate);
mName = itemView.findViewById(R.id.tv__name);
mBar = itemView.findViewById(R.id.rb__rate);
mBar.setOnRatingBarChangeListener(new RatingBar.OnRatingBarChangeListener()
{
@Override

View file

@ -56,8 +56,8 @@ class UGCRatingRecordsAdapter extends RecyclerView.Adapter<UGCRatingRecordsAdapt
public ViewHolder(View itemView)
{
super(itemView);
mName = (TextView) itemView.findViewById(R.id.name);
mBar = (RatingBar) itemView.findViewById(R.id.rating);
mName = itemView.findViewById(R.id.name);
mBar = itemView.findViewById(R.id.rating);
}
public void bind(UGC.Rating rating)

View file

@ -62,10 +62,10 @@ class UGCReviewAdapter extends Adapter<UGCReviewAdapter.ViewHolder>
public ViewHolder(View itemView)
{
super(itemView);
mAuthor = (TextView) itemView.findViewById(R.id.name);
mCommentDate = (TextView) itemView.findViewById(R.id.date);
mReview = (TextView) itemView.findViewById(R.id.review);
mRating = (RatingView) itemView.findViewById(R.id.rating);
mAuthor = itemView.findViewById(R.id.name);
mCommentDate = itemView.findViewById(R.id.date);
mReview = itemView.findViewById(R.id.review);
mRating = itemView.findViewById(R.id.rating);
// TODO: remove "gone" visibility when review rating behaviour is fixed on the server.
mRating.setVisibility(View.GONE);
}

View file

@ -63,17 +63,17 @@ public class StackedButtonsDialog extends AppCompatDialog implements View.OnClic
setOnCancelListener(mCancelListener);
setContentView(R.layout.dialog_stacked_buttons);
TextView title = (TextView) findViewById(R.id.tv__title);
TextView title = findViewById(R.id.tv__title);
UiUtils.setTextAndHideIfEmpty(title, mTitle);
TextView message = (TextView) findViewById(R.id.tv__message);
TextView message = findViewById(R.id.tv__message);
UiUtils.setTextAndHideIfEmpty(message, mMessage);
TextView positive = (TextView) findViewById(R.id.btn__positive);
TextView positive = findViewById(R.id.btn__positive);
positive.setOnClickListener(this);
UiUtils.setTextAndHideIfEmpty(positive, mPositive);
TextView neutral = (TextView) findViewById(R.id.btn__neutral);
TextView neutral = findViewById(R.id.btn__neutral);
neutral.setOnClickListener(this);
UiUtils.setTextAndHideIfEmpty(neutral, mNeutral);
TextView negative = (TextView) findViewById(R.id.btn__negative);
TextView negative = findViewById(R.id.btn__negative);
negative.setOnClickListener(this);
UiUtils.setTextAndHideIfEmpty(negative, mNegative);
}

View file

@ -83,7 +83,7 @@ public class NavMenu extends BaseMenu
.getResources().getInteger(R.integer.anim_menu);
mContentFrame = mFrame.findViewById(R.id.content_frame);
mToggleImage = new RotateDrawable(Graphics.tint(mFrame.getContext(), R.drawable.ic_menu_close, R.attr.iconTintLight));
ImageView toggle = (ImageView) mLineFrame.findViewById(R.id.toggle);
ImageView toggle = mLineFrame.findViewById(R.id.toggle);
toggle.setImageDrawable(mToggleImage);
setToggleState(false, false);

View file

@ -62,10 +62,10 @@ public class DirectionFragment extends BaseMwmDialogFragment
private void initViews(View root)
{
mAvDirection = (ArrowView) root.findViewById(R.id.av__direction);
mTvTitle = (TextView) root.findViewById(R.id.tv__title);
mTvSubtitle = (TextView) root.findViewById(R.id.tv__subtitle);
mTvDistance = (TextView) root.findViewById(R.id.tv__straight_distance);
mAvDirection = root.findViewById(R.id.av__direction);
mTvTitle = root.findViewById(R.id.tv__title);
mTvSubtitle = root.findViewById(R.id.tv__subtitle);
mTvDistance = root.findViewById(R.id.tv__straight_distance);
UiUtils.waitLayout(mTvTitle, new ViewTreeObserver.OnGlobalLayoutListener() {
@Override

View file

@ -90,11 +90,11 @@ public class EditBookmarkFragment extends BaseMwmDialogFragment implements View.
mBookmark = BookmarkManager.INSTANCE.getBookmarkInfo(bookmarkId);
if (mBookmark != null)
mIcon = mBookmark.getIcon();
mEtName = (EditText) view.findViewById(R.id.et__bookmark_name);
mEtDescription = (EditText) view.findViewById(R.id.et__description);
mTvBookmarkGroup = (TextView) view.findViewById(R.id.tv__bookmark_set);
mEtName = view.findViewById(R.id.et__bookmark_name);
mEtDescription = view.findViewById(R.id.et__description);
mTvBookmarkGroup = view.findViewById(R.id.tv__bookmark_set);
mTvBookmarkGroup.setOnClickListener(this);
mIvColor = (ImageView) view.findViewById(R.id.iv__bookmark_color);
mIvColor = view.findViewById(R.id.iv__bookmark_color);
mIvColor.setOnClickListener(this);
refreshBookmark();
initToolbar(view);
@ -102,9 +102,9 @@ public class EditBookmarkFragment extends BaseMwmDialogFragment implements View.
private void initToolbar(View view)
{
Toolbar toolbar = (Toolbar) view.findViewById(R.id.toolbar);
Toolbar toolbar = view.findViewById(R.id.toolbar);
UiUtils.extendViewWithStatusBar(toolbar);
final TextView textView = (TextView) toolbar.findViewById(R.id.tv__save);
final TextView textView = toolbar.findViewById(R.id.tv__save);
textView.setOnClickListener(new View.OnClickListener()
{
@Override

View file

@ -64,7 +64,7 @@ public class EditDescriptionFragment extends BaseMwmDialogFragment
description = Html.fromHtml(description).toString();
}
mEtDescription = (EditText) view.findViewById(R.id.et__description);
mEtDescription = view.findViewById(R.id.et__description);
mEtDescription.setText(description);
initToolbar(view);
@ -79,9 +79,9 @@ public class EditDescriptionFragment extends BaseMwmDialogFragment
private void initToolbar(View view)
{
Toolbar toolbar = (Toolbar) view.findViewById(R.id.toolbar);
Toolbar toolbar = view.findViewById(R.id.toolbar);
UiUtils.extendViewWithStatusBar(toolbar);
final TextView textView = (TextView) toolbar.findViewById(R.id.tv__save);
final TextView textView = toolbar.findViewById(R.id.tv__save);
textView.setOnClickListener(new View.OnClickListener()
{
@Override

View file

@ -77,7 +77,7 @@ class FacilitiesAdapter extends RecyclerView.Adapter<FacilitiesAdapter.ViewHolde
super(view);
// TODO we need icons from designer
// mIcon = (ImageView) view.findViewById(R.id.iv__icon);
mName = (TextView) view.findViewById(R.id.tv__facility);
mName = view.findViewById(R.id.tv__facility);
view.setOnClickListener(this);
}

View file

@ -137,7 +137,7 @@ class GalleryAdapter extends RecyclerView.Adapter<GalleryAdapter.ViewHolder>
{
super(itemView);
mListener = listener;
mImage = (ImageView) itemView.findViewById(R.id.iv__image);
mImage = itemView.findViewById(R.id.iv__image);
mMore = itemView.findViewById(R.id.tv__more);
itemView.setOnClickListener(this);
}

View file

@ -95,10 +95,10 @@ class NearbyAdapter extends BaseAdapter
public ViewHolder(View view, @Nullable OnItemClickListener listener)
{
mListener = listener;
mIcon = (ImageView) view.findViewById(R.id.iv__icon);
mTitle = (TextView) view.findViewById(R.id.tv__title);
mType = (TextView) view.findViewById(R.id.tv__type);
mDistance = (TextView) view.findViewById(R.id.tv__distance);
mIcon = view.findViewById(R.id.iv__icon);
mTitle = view.findViewById(R.id.tv__title);
mType = view.findViewById(R.id.tv__type);
mDistance = view.findViewById(R.id.tv__distance);
view.setOnClickListener(this);
}

View file

@ -518,8 +518,8 @@ public final class PlacePageButtons
LayoutInflater inflater = LayoutInflater.from(context);
View parent = inflater.inflate(R.layout.place_page_button, mFrame, false);
ImageView icon = (ImageView) parent.findViewById(R.id.icon);
TextView title = (TextView) parent.findViewById(R.id.title);
ImageView icon = parent.findViewById(R.id.icon);
TextView title = parent.findViewById(R.id.title);
title.setText(current.getTitle());
icon.setImageResource(current.getIcon().getEnabledStateResId(context));

View file

@ -78,13 +78,13 @@ class ReviewAdapter extends RecyclerView.Adapter<ReviewAdapter.ViewHolder>
{
super(view);
mDivider = view.findViewById(R.id.v__divider);
mUserName = (TextView) view.findViewById(R.id.tv__user_name);
mCommentDate = (TextView) view.findViewById(R.id.tv__comment_date);
mRating = (TextView) view.findViewById(R.id.tv__user_rating);
mUserName = view.findViewById(R.id.tv__user_name);
mCommentDate = view.findViewById(R.id.tv__comment_date);
mRating = view.findViewById(R.id.tv__user_rating);
mPositiveReview = view.findViewById(R.id.ll__positive_review);
mTvPositiveReview = (TextView) view.findViewById(R.id.tv__positive_review);
mTvPositiveReview = view.findViewById(R.id.tv__positive_review);
mNegativeReview = view.findViewById(R.id.ll__negative_review);
mTvNegativeReview = (TextView) view.findViewById(R.id.tv__negative_review);
mTvNegativeReview = view.findViewById(R.id.tv__negative_review);
}
public void bind(Review item, boolean isShowDivider)