How to disable input from the Amazon Fire TV Controller once an Click Listener has been pressed?

127 views Asked by At

I have a list view with a list of channels on them and when I press one of the channels, it starts to load a streaming URL to watch the channel. However, I can still navigate through the list and select another entry in the list which causes an Exception to occur. How can I disable controller input similar to how I can disable touch input once something has been pressed?

Here is the code for my onItemClickListener:

channel_list_view.setOnItemClickListener(new AdapterView.OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
                main_progressBar.setVisibility(View.VISIBLE);

                //to disable touch input
                //getWindow().setFlags(WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE, WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE);



                final int channel = channelListAdapter.getItem(position);
                final String switch_major = majorChannelNumberList.get(channel);
                Log.d(TAG, "Switch Major :" + switch_major);
                final String switch_minor = minorChannelNumberList.get(channel);
                Log.d(TAG, "Switch Minor :" + switch_minor);
                final String switch_name = channelNameList.get(channel);
                Log.d(TAG, "Switch Name :" + switch_name);

                final String tuner = tuneLink + "Major=" + switch_major + "&Minor=" + switch_minor + "&Resolution=" + "1280x720";
                Log.d(TAG, "Tuner String :" + tuner);

                new Thread(new Runnable() {
                    @Override
                    public void run() {
                        String playlive = "";
                        String tuneResponse = tuneConnection.get_response(tuner);
                        if(tuneResponse.contains("successful")){
                            long startTime = System.currentTimeMillis();
                            do {
                                String hlsStatusResponse = hlsConnection.get_response(HLSLink);
                                Log.d(TAG,"HLS Status Response :" + hlsStatusResponse);
                                Matcher matcher = Pattern.compile("<hls_link>(.+?)</hls_link>").matcher(hlsStatusResponse);

                                while(matcher.find()){
                                    playlive = matcher.group(1);
                                }

                                playlink = "http://" + ip + "/" + playlive;
                            } while (Objects.equals(playlive, "none") && (System.currentTimeMillis()-startTime)<20000);

                            if(!playlink.contains("none")){
                                streamConnection.get_response(playlink);
                            } else {
                                //TODO: implement some sort of message here to show no channel, see tablet app
                            }
                        } else {
                            Toast.makeText(OfflineActivity.this, "Ch " + switch_major + "-" + switch_minor + " " + switch_name + " is not available now",
                                    Toast.LENGTH_LONG).show();
                        }

                    }
                }).start();

                //start player activity
                streamConnection.responseHandler = new Handler(){
                    @Override
                    public void handleMessage(Message message){
                        Toast.makeText(OfflineActivity.this, "Tune to Channel " + switch_major + "-" + switch_minor, Toast.LENGTH_LONG).show();


                        Intent intent = new Intent(OfflineActivity.this, OfflinePlaybackActivity.class);
                        intent.putExtra("stream",playlink);
                        intent.putExtra("channel_index", channel);
                        startActivity(intent);


                        main_progressBar.setVisibility(View.INVISIBLE);
                    }
                };
            }
        });

I know I can use

getWindow().setFlags(WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE, WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE);

to disable touch input, looking for something similar for Amazon Fire TV.

1

There are 1 answers

0
Jvalant Dave On BEST ANSWER

Decided to use channel_list_view.setClickable(false) to prevent user from clicking on it.