mirror of
https://github.com/KDE/kdeconnect-android
synced 2025-09-01 06:35:09 +00:00
Remove unneeded casts
This commit is contained in:
@@ -98,7 +98,7 @@ public class MousePadActivity extends AppCompatActivity implements GestureDetect
|
|||||||
mMousePadGestureDetector = new MousePadGestureDetector(this, this);
|
mMousePadGestureDetector = new MousePadGestureDetector(this, this);
|
||||||
mDetector.setOnDoubleTapListener(this);
|
mDetector.setOnDoubleTapListener(this);
|
||||||
|
|
||||||
keyListenerView = (KeyListenerView) findViewById(R.id.keyListener);
|
keyListenerView = findViewById(R.id.keyListener);
|
||||||
keyListenerView.setDeviceId(deviceId);
|
keyListenerView.setDeviceId(deviceId);
|
||||||
|
|
||||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
|
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
|
||||||
|
@@ -110,7 +110,7 @@ public class MprisActivity extends AppCompatActivity {
|
|||||||
|
|
||||||
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
|
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
|
||||||
runOnUiThread(() -> {
|
runOnUiThread(() -> {
|
||||||
Spinner spinner = (Spinner) findViewById(R.id.player_spinner);
|
Spinner spinner = findViewById(R.id.player_spinner);
|
||||||
//String prevPlayer = (String)spinner.getSelectedItem();
|
//String prevPlayer = (String)spinner.getSelectedItem();
|
||||||
spinner.setAdapter(adapter);
|
spinner.setAdapter(adapter);
|
||||||
|
|
||||||
@@ -209,7 +209,7 @@ public class MprisActivity extends AppCompatActivity {
|
|||||||
}
|
}
|
||||||
String song = playerStatus.getCurrentSong();
|
String song = playerStatus.getCurrentSong();
|
||||||
|
|
||||||
TextView nowPlaying = (TextView) findViewById(R.id.now_playing_textview);
|
TextView nowPlaying = findViewById(R.id.now_playing_textview);
|
||||||
if (!nowPlaying.getText().toString().equals(song)) {
|
if (!nowPlaying.getText().toString().equals(song)) {
|
||||||
nowPlaying.setText(song);
|
nowPlaying.setText(song);
|
||||||
}
|
}
|
||||||
@@ -225,7 +225,7 @@ public class MprisActivity extends AppCompatActivity {
|
|||||||
|
|
||||||
if (playerStatus.isSeekAllowed()) {
|
if (playerStatus.isSeekAllowed()) {
|
||||||
((TextView) findViewById(R.id.time_textview)).setText(milisToProgress(playerStatus.getLength()));
|
((TextView) findViewById(R.id.time_textview)).setText(milisToProgress(playerStatus.getLength()));
|
||||||
SeekBar positionSeek = (SeekBar) findViewById(R.id.positionSeek);
|
SeekBar positionSeek = findViewById(R.id.positionSeek);
|
||||||
positionSeek.setMax((int) (playerStatus.getLength()));
|
positionSeek.setMax((int) (playerStatus.getLength()));
|
||||||
positionSeek.setProgress((int) (playerStatus.getPosition()));
|
positionSeek.setProgress((int) (playerStatus.getPosition()));
|
||||||
findViewById(R.id.progress_slider).setVisibility(View.VISIBLE);
|
findViewById(R.id.progress_slider).setVisibility(View.VISIBLE);
|
||||||
@@ -377,7 +377,7 @@ public class MprisActivity extends AppCompatActivity {
|
|||||||
});
|
});
|
||||||
|
|
||||||
positionSeekUpdateRunnable = () -> {
|
positionSeekUpdateRunnable = () -> {
|
||||||
final SeekBar positionSeek = (SeekBar) findViewById(R.id.positionSeek);
|
final SeekBar positionSeek = findViewById(R.id.positionSeek);
|
||||||
BackgroundService.RunCommand(MprisActivity.this, service -> {
|
BackgroundService.RunCommand(MprisActivity.this, service -> {
|
||||||
if (targetPlayer != null) {
|
if (targetPlayer != null) {
|
||||||
positionSeek.setProgress((int) (targetPlayer.getPosition()));
|
positionSeek.setProgress((int) (targetPlayer.getPosition()));
|
||||||
|
@@ -128,7 +128,7 @@ public class NotificationFilterActivity extends AppCompatActivity {
|
|||||||
|
|
||||||
private void displayAppList() {
|
private void displayAppList() {
|
||||||
|
|
||||||
listView = (ListView) findViewById(R.id.lvFilterApps);
|
listView = findViewById(R.id.lvFilterApps);
|
||||||
AppListAdapter adapter = new AppListAdapter();
|
AppListAdapter adapter = new AppListAdapter();
|
||||||
listView.setAdapter(adapter);
|
listView.setAdapter(adapter);
|
||||||
listView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);
|
listView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);
|
||||||
|
@@ -67,7 +67,7 @@ public class RunCommandActivity extends AppCompatActivity {
|
|||||||
}
|
}
|
||||||
|
|
||||||
runOnUiThread(() -> {
|
runOnUiThread(() -> {
|
||||||
ListView view = (ListView) findViewById(R.id.runcommandslist);
|
ListView view = findViewById(R.id.runcommandslist);
|
||||||
|
|
||||||
registerForContextMenu(view);
|
registerForContextMenu(view);
|
||||||
|
|
||||||
@@ -96,7 +96,7 @@ public class RunCommandActivity extends AppCompatActivity {
|
|||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
TextView explanation = (TextView) findViewById(R.id.addcomand_explanation);
|
TextView explanation = findViewById(R.id.addcomand_explanation);
|
||||||
String text = getString(R.string.addcommand_explanation);
|
String text = getString(R.string.addcommand_explanation);
|
||||||
if (!plugin.canAddCommand()) {
|
if (!plugin.canAddCommand()) {
|
||||||
text += "\n" + getString(R.string.addcommand_explanation2);
|
text += "\n" + getString(R.string.addcommand_explanation2);
|
||||||
@@ -117,7 +117,7 @@ public class RunCommandActivity extends AppCompatActivity {
|
|||||||
|
|
||||||
boolean canAddCommands = BackgroundService.getInstance().getDevice(deviceId).getPlugin(RunCommandPlugin.class).canAddCommand();
|
boolean canAddCommands = BackgroundService.getInstance().getDevice(deviceId).getPlugin(RunCommandPlugin.class).canAddCommand();
|
||||||
|
|
||||||
FloatingActionButton addCommandButton = (FloatingActionButton) findViewById(R.id.add_command_button);
|
FloatingActionButton addCommandButton = findViewById(R.id.add_command_button);
|
||||||
addCommandButton.setVisibility(canAddCommands ? View.VISIBLE : View.GONE);
|
addCommandButton.setVisibility(canAddCommands ? View.VISIBLE : View.GONE);
|
||||||
|
|
||||||
addCommandButton.setOnClickListener(view -> BackgroundService.RunCommand(RunCommandActivity.this, service -> {
|
addCommandButton.setOnClickListener(view -> BackgroundService.RunCommand(RunCommandActivity.this, service -> {
|
||||||
|
@@ -26,7 +26,7 @@ public class RunCommandWidgetDeviceSelector extends AppCompatActivity {
|
|||||||
setContentView(R.layout.widget_remotecommandplugin_dialog);
|
setContentView(R.layout.widget_remotecommandplugin_dialog);
|
||||||
|
|
||||||
BackgroundService.RunCommand(this, service -> runOnUiThread(() -> {
|
BackgroundService.RunCommand(this, service -> runOnUiThread(() -> {
|
||||||
ListView view = (ListView) findViewById(R.id.runcommandsdevicelist);
|
ListView view = findViewById(R.id.runcommandsdevicelist);
|
||||||
|
|
||||||
final ArrayList<ListAdapter.Item> deviceItems = new ArrayList<>();
|
final ArrayList<ListAdapter.Item> deviceItems = new ArrayList<>();
|
||||||
|
|
||||||
|
@@ -108,7 +108,7 @@ public class ShareActivity extends AppCompatActivity {
|
|||||||
}
|
}
|
||||||
|
|
||||||
runOnUiThread(() -> {
|
runOnUiThread(() -> {
|
||||||
ListView list = (ListView) findViewById(R.id.devices_list);
|
ListView list = findViewById(R.id.devices_list);
|
||||||
list.setAdapter(new ListAdapter(ShareActivity.this, items));
|
list.setAdapter(new ListAdapter(ShareActivity.this, items));
|
||||||
list.setOnItemClickListener((adapterView, view, i, l) -> {
|
list.setOnItemClickListener((adapterView, view, i, l) -> {
|
||||||
|
|
||||||
@@ -129,7 +129,7 @@ public class ShareActivity extends AppCompatActivity {
|
|||||||
setContentView(R.layout.devices_list);
|
setContentView(R.layout.devices_list);
|
||||||
|
|
||||||
ActionBar actionBar = getSupportActionBar();
|
ActionBar actionBar = getSupportActionBar();
|
||||||
mSwipeRefreshLayout = (SwipeRefreshLayout) findViewById(R.id.refresh_list_layout);
|
mSwipeRefreshLayout = findViewById(R.id.refresh_list_layout);
|
||||||
mSwipeRefreshLayout.setOnRefreshListener(
|
mSwipeRefreshLayout.setOnRefreshListener(
|
||||||
this::updateComputerListAction
|
this::updateComputerListAction
|
||||||
);
|
);
|
||||||
|
@@ -121,12 +121,12 @@ public class SystemvolumeFragment extends ListFragment implements Sink.UpdateLis
|
|||||||
|
|
||||||
((TextView) view.findViewById(R.id.systemvolume_label)).setText(getItem(position).getDescription());
|
((TextView) view.findViewById(R.id.systemvolume_label)).setText(getItem(position).getDescription());
|
||||||
|
|
||||||
final SeekBar seekBar = (SeekBar) view.findViewById(R.id.systemvolume_seek);
|
final SeekBar seekBar = view.findViewById(R.id.systemvolume_seek);
|
||||||
seekBar.setMax(getItem(position).getMaxVolume());
|
seekBar.setMax(getItem(position).getMaxVolume());
|
||||||
seekBar.setProgress(getItem(position).getVolume());
|
seekBar.setProgress(getItem(position).getVolume());
|
||||||
seekBar.setOnSeekBarChangeListener(listener);
|
seekBar.setOnSeekBarChangeListener(listener);
|
||||||
|
|
||||||
ImageButton button = (ImageButton) view.findViewById(R.id.systemvolume_mute);
|
ImageButton button = view.findViewById(R.id.systemvolume_mute);
|
||||||
int iconRes = getItem(position).isMute() ? R.drawable.ic_volume_mute_black : R.drawable.ic_volume_black;
|
int iconRes = getItem(position).isMute() ? R.drawable.ic_volume_mute_black : R.drawable.ic_volume_black;
|
||||||
button.setImageResource(iconRes);
|
button.setImageResource(iconRes);
|
||||||
button.setOnClickListener(listener);
|
button.setOnClickListener(listener);
|
||||||
|
@@ -58,14 +58,14 @@ public class CustomDevicesActivity extends AppCompatActivity {
|
|||||||
ThemeUtil.setUserPreferredTheme(this);
|
ThemeUtil.setUserPreferredTheme(this);
|
||||||
setContentView(R.layout.custom_ip_list);
|
setContentView(R.layout.custom_ip_list);
|
||||||
|
|
||||||
list = (ListView) findViewById(android.R.id.list);
|
list = findViewById(android.R.id.list);
|
||||||
list.setOnItemClickListener(onClickListener);
|
list.setOnItemClickListener(onClickListener);
|
||||||
|
|
||||||
list.setAdapter(new ArrayAdapter<>(this, android.R.layout.simple_list_item_1, ipAddressList));
|
list.setAdapter(new ArrayAdapter<>(this, android.R.layout.simple_list_item_1, ipAddressList));
|
||||||
|
|
||||||
findViewById(android.R.id.button1).setOnClickListener(v -> addNewDevice());
|
findViewById(android.R.id.button1).setOnClickListener(v -> addNewDevice());
|
||||||
|
|
||||||
EditText ipEntryBox = (EditText) findViewById(R.id.ip_edittext);
|
EditText ipEntryBox = findViewById(R.id.ip_edittext);
|
||||||
ipEntryBox.setOnEditorActionListener((v, actionId, event) -> {
|
ipEntryBox.setOnEditorActionListener((v, actionId, event) -> {
|
||||||
if (actionId == EditorInfo.IME_ACTION_SEND) {
|
if (actionId == EditorInfo.IME_ACTION_SEND) {
|
||||||
addNewDevice();
|
addNewDevice();
|
||||||
@@ -108,7 +108,7 @@ public class CustomDevicesActivity extends AppCompatActivity {
|
|||||||
};
|
};
|
||||||
|
|
||||||
private void addNewDevice() {
|
private void addNewDevice() {
|
||||||
EditText ipEntryBox = (EditText) findViewById(R.id.ip_edittext);
|
EditText ipEntryBox = findViewById(R.id.ip_edittext);
|
||||||
String enteredText = ipEntryBox.getText().toString().trim();
|
String enteredText = ipEntryBox.getText().toString().trim();
|
||||||
if (!enteredText.isEmpty()) {
|
if (!enteredText.isEmpty()) {
|
||||||
// don't add empty string (after trimming)
|
// don't add empty string (after trimming)
|
||||||
|
@@ -125,7 +125,7 @@ public class DeviceFragment extends Fragment {
|
|||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
final Button pairButton = (Button) rootView.findViewById(R.id.pair_button);
|
final Button pairButton = rootView.findViewById(R.id.pair_button);
|
||||||
pairButton.setOnClickListener(view -> {
|
pairButton.setOnClickListener(view -> {
|
||||||
pairButton.setVisibility(View.GONE);
|
pairButton.setVisibility(View.GONE);
|
||||||
((TextView) rootView.findViewById(R.id.pair_message)).setText("");
|
((TextView) rootView.findViewById(R.id.pair_message)).setText("");
|
||||||
|
@@ -45,11 +45,11 @@ public class EntryItem implements ListAdapter.Item {
|
|||||||
public View inflateView(LayoutInflater layoutInflater) {
|
public View inflateView(LayoutInflater layoutInflater) {
|
||||||
View v = layoutInflater.inflate(R.layout.list_item_entry, null);
|
View v = layoutInflater.inflate(R.layout.list_item_entry, null);
|
||||||
|
|
||||||
TextView titleView = (TextView) v.findViewById(R.id.list_item_entry_title);
|
TextView titleView = v.findViewById(R.id.list_item_entry_title);
|
||||||
if (titleView != null) titleView.setText(title);
|
if (titleView != null) titleView.setText(title);
|
||||||
|
|
||||||
if (subtitle != null) {
|
if (subtitle != null) {
|
||||||
TextView subtitleView = (TextView) v.findViewById(R.id.list_item_entry_summary);
|
TextView subtitleView = v.findViewById(R.id.list_item_entry_summary);
|
||||||
if (subtitleView != null) {
|
if (subtitleView != null) {
|
||||||
subtitleView.setVisibility(View.VISIBLE);
|
subtitleView.setVisibility(View.VISIBLE);
|
||||||
subtitleView.setText(subtitle);
|
subtitleView.setText(subtitle);
|
||||||
|
@@ -50,14 +50,14 @@ public class PairingDeviceItem implements ListAdapter.Item {
|
|||||||
public View inflateView(LayoutInflater layoutInflater) {
|
public View inflateView(LayoutInflater layoutInflater) {
|
||||||
final View v = layoutInflater.inflate(R.layout.list_item_with_icon_entry, null);
|
final View v = layoutInflater.inflate(R.layout.list_item_with_icon_entry, null);
|
||||||
|
|
||||||
ImageView icon = (ImageView) v.findViewById(R.id.list_item_entry_icon);
|
ImageView icon = v.findViewById(R.id.list_item_entry_icon);
|
||||||
icon.setImageDrawable(device.getIcon());
|
icon.setImageDrawable(device.getIcon());
|
||||||
|
|
||||||
TextView titleView = (TextView) v.findViewById(R.id.list_item_entry_title);
|
TextView titleView = v.findViewById(R.id.list_item_entry_title);
|
||||||
titleView.setText(device.getName());
|
titleView.setText(device.getName());
|
||||||
|
|
||||||
if (device.compareProtocolVersion() != 0) {
|
if (device.compareProtocolVersion() != 0) {
|
||||||
TextView summaryView = (TextView) v.findViewById(R.id.list_item_entry_summary);
|
TextView summaryView = v.findViewById(R.id.list_item_entry_summary);
|
||||||
|
|
||||||
if (device.compareProtocolVersion() > 0) {
|
if (device.compareProtocolVersion() > 0) {
|
||||||
summaryView.setText(R.string.protocol_version_newer);
|
summaryView.setText(R.string.protocol_version_newer);
|
||||||
|
@@ -43,10 +43,10 @@ public class PluginItem implements ListAdapter.Item {
|
|||||||
public View inflateView(final LayoutInflater layoutInflater) {
|
public View inflateView(final LayoutInflater layoutInflater) {
|
||||||
View v = layoutInflater.inflate(R.layout.list_item_with_icon_entry, null);
|
View v = layoutInflater.inflate(R.layout.list_item_with_icon_entry, null);
|
||||||
|
|
||||||
TextView titleView = (TextView) v.findViewById(R.id.list_item_entry_title);
|
TextView titleView = v.findViewById(R.id.list_item_entry_title);
|
||||||
titleView.setText(plugin.getActionName());
|
titleView.setText(plugin.getActionName());
|
||||||
|
|
||||||
ImageView imageView = (ImageView) v.findViewById(R.id.list_item_entry_icon);
|
ImageView imageView = v.findViewById(R.id.list_item_entry_icon);
|
||||||
imageView.setImageDrawable(plugin.getIcon());
|
imageView.setImageDrawable(plugin.getIcon());
|
||||||
|
|
||||||
v.setOnClickListener(clickListener);
|
v.setOnClickListener(clickListener);
|
||||||
|
@@ -45,7 +45,7 @@ public class SectionItem implements ListAdapter.Item {
|
|||||||
v.setOnClickListener(null);
|
v.setOnClickListener(null);
|
||||||
v.setOnLongClickListener(null);
|
v.setOnLongClickListener(null);
|
||||||
|
|
||||||
TextView sectionView = (TextView) v.findViewById(R.id.list_item_category_text);
|
TextView sectionView = v.findViewById(R.id.list_item_category_text);
|
||||||
sectionView.setText(title);
|
sectionView.setText(title);
|
||||||
|
|
||||||
if (isEmpty) {
|
if (isEmpty) {
|
||||||
|
@@ -46,7 +46,7 @@ public class SmallEntryItem implements ListAdapter.Item {
|
|||||||
public View inflateView(LayoutInflater layoutInflater) {
|
public View inflateView(LayoutInflater layoutInflater) {
|
||||||
View v = layoutInflater.inflate(android.R.layout.simple_list_item_1, null);
|
View v = layoutInflater.inflate(android.R.layout.simple_list_item_1, null);
|
||||||
|
|
||||||
TextView titleView = (TextView) v.findViewById(android.R.id.text1);
|
TextView titleView = v.findViewById(android.R.id.text1);
|
||||||
if (titleView != null) {
|
if (titleView != null) {
|
||||||
titleView.setText(title);
|
titleView.setText(title);
|
||||||
if (clickListener != null) {
|
if (clickListener != null) {
|
||||||
|
@@ -77,7 +77,7 @@ public class PairingFragment extends Fragment implements PairingDeviceItem.Callb
|
|||||||
|
|
||||||
rootView = inflater.inflate(R.layout.devices_list, container, false);
|
rootView = inflater.inflate(R.layout.devices_list, container, false);
|
||||||
View listRootView = rootView.findViewById(R.id.devices_list);
|
View listRootView = rootView.findViewById(R.id.devices_list);
|
||||||
mSwipeRefreshLayout = (SwipeRefreshLayout) rootView.findViewById(R.id.refresh_list_layout);
|
mSwipeRefreshLayout = rootView.findViewById(R.id.refresh_list_layout);
|
||||||
mSwipeRefreshLayout.setOnRefreshListener(
|
mSwipeRefreshLayout.setOnRefreshListener(
|
||||||
this::updateComputerListAction
|
this::updateComputerListAction
|
||||||
);
|
);
|
||||||
@@ -172,7 +172,7 @@ public class PairingFragment extends Fragment implements PairingDeviceItem.Callb
|
|||||||
items.remove(items.size() - 1); //Remove remembered devices section if empty
|
items.remove(items.size() - 1); //Remove remembered devices section if empty
|
||||||
}
|
}
|
||||||
|
|
||||||
final ListView list = (ListView) rootView.findViewById(R.id.devices_list);
|
final ListView list = rootView.findViewById(R.id.devices_list);
|
||||||
|
|
||||||
//Store current scroll
|
//Store current scroll
|
||||||
int index = list.getFirstVisiblePosition();
|
int index = list.getFirstVisiblePosition();
|
||||||
|
Reference in New Issue
Block a user