Clickable button in custom Spinner item blocks clicking of item itself










0















I have custom ArrayAdapter and custom item layout for Spinner.



<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:clickable="true"
android:layout_height="wrap_content">

<TextView
android:id="@android:id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="48dp"
android:layout_toStartOf="@id/delete"
android:drawablePadding="8dp"
android:gravity="center_vertical|start"
android:paddingTop="8dp"
android:paddingBottom="8dp"
android:paddingStart="16dp"
android:ellipsize="none"
android:textAppearance="@style/TextAppearance.AppCompat.Menu" />

<ImageButton
android:id="@+id/delete"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="16dp"
android:layout_alignParentEnd="true"
android:layout_centerInParent="true"
android:contentDescription="@null"
android:background="?attr/transparentRoundRipple"
android:src="@drawable/ic_delete_grey600_24px" />
</RelativeLayout>


In this layout there is a button that deletes this item



@Override
public View getDropDownView(int position, View view, ViewGroup parent)

if (view == null)
LayoutInflater inflater = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
view = inflater.inflate(R.layout.spinner_user_agent_item, parent, false);


TextView textView = view.findViewById(android.R.id.text1);
textView.setText(getItem(position));

ImageButton deleteButton = view.findViewById(R.id.delete);
deleteButton.setOnClickListener((View v) -> removeAgent(getItem(position)));

return view;



But the problem is that the listener of this button blocks the click of the element itself and I cannot select it from the list. Is it possible to change the behavior and make it so that I can click on the button (for deletion) and on the element itself (for selection)?










share|improve this question


























    0















    I have custom ArrayAdapter and custom item layout for Spinner.



    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:clickable="true"
    android:layout_height="wrap_content">

    <TextView
    android:id="@android:id/text1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:minHeight="48dp"
    android:layout_toStartOf="@id/delete"
    android:drawablePadding="8dp"
    android:gravity="center_vertical|start"
    android:paddingTop="8dp"
    android:paddingBottom="8dp"
    android:paddingStart="16dp"
    android:ellipsize="none"
    android:textAppearance="@style/TextAppearance.AppCompat.Menu" />

    <ImageButton
    android:id="@+id/delete"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:padding="16dp"
    android:layout_alignParentEnd="true"
    android:layout_centerInParent="true"
    android:contentDescription="@null"
    android:background="?attr/transparentRoundRipple"
    android:src="@drawable/ic_delete_grey600_24px" />
    </RelativeLayout>


    In this layout there is a button that deletes this item



    @Override
    public View getDropDownView(int position, View view, ViewGroup parent)

    if (view == null)
    LayoutInflater inflater = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    view = inflater.inflate(R.layout.spinner_user_agent_item, parent, false);


    TextView textView = view.findViewById(android.R.id.text1);
    textView.setText(getItem(position));

    ImageButton deleteButton = view.findViewById(R.id.delete);
    deleteButton.setOnClickListener((View v) -> removeAgent(getItem(position)));

    return view;



    But the problem is that the listener of this button blocks the click of the element itself and I cannot select it from the list. Is it possible to change the behavior and make it so that I can click on the button (for deletion) and on the element itself (for selection)?










    share|improve this question
























      0












      0








      0








      I have custom ArrayAdapter and custom item layout for Spinner.



      <?xml version="1.0" encoding="utf-8"?>
      <RelativeLayout
      xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="wrap_content"
      android:clickable="true"
      android:layout_height="wrap_content">

      <TextView
      android:id="@android:id/text1"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:minHeight="48dp"
      android:layout_toStartOf="@id/delete"
      android:drawablePadding="8dp"
      android:gravity="center_vertical|start"
      android:paddingTop="8dp"
      android:paddingBottom="8dp"
      android:paddingStart="16dp"
      android:ellipsize="none"
      android:textAppearance="@style/TextAppearance.AppCompat.Menu" />

      <ImageButton
      android:id="@+id/delete"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:padding="16dp"
      android:layout_alignParentEnd="true"
      android:layout_centerInParent="true"
      android:contentDescription="@null"
      android:background="?attr/transparentRoundRipple"
      android:src="@drawable/ic_delete_grey600_24px" />
      </RelativeLayout>


      In this layout there is a button that deletes this item



      @Override
      public View getDropDownView(int position, View view, ViewGroup parent)

      if (view == null)
      LayoutInflater inflater = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
      view = inflater.inflate(R.layout.spinner_user_agent_item, parent, false);


      TextView textView = view.findViewById(android.R.id.text1);
      textView.setText(getItem(position));

      ImageButton deleteButton = view.findViewById(R.id.delete);
      deleteButton.setOnClickListener((View v) -> removeAgent(getItem(position)));

      return view;



      But the problem is that the listener of this button blocks the click of the element itself and I cannot select it from the list. Is it possible to change the behavior and make it so that I can click on the button (for deletion) and on the element itself (for selection)?










      share|improve this question














      I have custom ArrayAdapter and custom item layout for Spinner.



      <?xml version="1.0" encoding="utf-8"?>
      <RelativeLayout
      xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="wrap_content"
      android:clickable="true"
      android:layout_height="wrap_content">

      <TextView
      android:id="@android:id/text1"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:minHeight="48dp"
      android:layout_toStartOf="@id/delete"
      android:drawablePadding="8dp"
      android:gravity="center_vertical|start"
      android:paddingTop="8dp"
      android:paddingBottom="8dp"
      android:paddingStart="16dp"
      android:ellipsize="none"
      android:textAppearance="@style/TextAppearance.AppCompat.Menu" />

      <ImageButton
      android:id="@+id/delete"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:padding="16dp"
      android:layout_alignParentEnd="true"
      android:layout_centerInParent="true"
      android:contentDescription="@null"
      android:background="?attr/transparentRoundRipple"
      android:src="@drawable/ic_delete_grey600_24px" />
      </RelativeLayout>


      In this layout there is a button that deletes this item



      @Override
      public View getDropDownView(int position, View view, ViewGroup parent)

      if (view == null)
      LayoutInflater inflater = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
      view = inflater.inflate(R.layout.spinner_user_agent_item, parent, false);


      TextView textView = view.findViewById(android.R.id.text1);
      textView.setText(getItem(position));

      ImageButton deleteButton = view.findViewById(R.id.delete);
      deleteButton.setOnClickListener((View v) -> removeAgent(getItem(position)));

      return view;



      But the problem is that the listener of this button blocks the click of the element itself and I cannot select it from the list. Is it possible to change the behavior and make it so that I can click on the button (for deletion) and on the element itself (for selection)?







      java android android-spinner






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 13 '18 at 16:04









      proninyaroslavproninyaroslav

      60210




      60210






















          2 Answers
          2






          active

          oldest

          votes


















          0














          Try to add to your android:clickable="true" in RelativeLayout also android:focusable="true" and android:focusableInTouchMode="true"






          share|improve this answer























          • Unfortunately it doesn't work

            – proninyaroslav
            Nov 13 '18 at 17:57


















          0














          The solution was simple: use ImageView instead of ImageButton.






          share|improve this answer






















            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53284953%2fclickable-button-in-custom-spinner-item-blocks-clicking-of-item-itself%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Try to add to your android:clickable="true" in RelativeLayout also android:focusable="true" and android:focusableInTouchMode="true"






            share|improve this answer























            • Unfortunately it doesn't work

              – proninyaroslav
              Nov 13 '18 at 17:57















            0














            Try to add to your android:clickable="true" in RelativeLayout also android:focusable="true" and android:focusableInTouchMode="true"






            share|improve this answer























            • Unfortunately it doesn't work

              – proninyaroslav
              Nov 13 '18 at 17:57













            0












            0








            0







            Try to add to your android:clickable="true" in RelativeLayout also android:focusable="true" and android:focusableInTouchMode="true"






            share|improve this answer













            Try to add to your android:clickable="true" in RelativeLayout also android:focusable="true" and android:focusableInTouchMode="true"







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Nov 13 '18 at 16:58









            badadinbadadin

            23119




            23119












            • Unfortunately it doesn't work

              – proninyaroslav
              Nov 13 '18 at 17:57

















            • Unfortunately it doesn't work

              – proninyaroslav
              Nov 13 '18 at 17:57
















            Unfortunately it doesn't work

            – proninyaroslav
            Nov 13 '18 at 17:57





            Unfortunately it doesn't work

            – proninyaroslav
            Nov 13 '18 at 17:57













            0














            The solution was simple: use ImageView instead of ImageButton.






            share|improve this answer



























              0














              The solution was simple: use ImageView instead of ImageButton.






              share|improve this answer

























                0












                0








                0







                The solution was simple: use ImageView instead of ImageButton.






                share|improve this answer













                The solution was simple: use ImageView instead of ImageButton.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 14 '18 at 15:31









                proninyaroslavproninyaroslav

                60210




                60210



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53284953%2fclickable-button-in-custom-spinner-item-blocks-clicking-of-item-itself%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Use pre created SQLite database for Android project in kotlin

                    Darth Vader #20

                    Ondo