Clickable button in custom Spinner item blocks clicking of item itself
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
add a comment |
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
add a comment |
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
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
java android android-spinner
asked Nov 13 '18 at 16:04
proninyaroslavproninyaroslav
60210
60210
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Try to add to your android:clickable="true"
in RelativeLayout
also android:focusable="true"
and android:focusableInTouchMode="true"
Unfortunately it doesn't work
– proninyaroslav
Nov 13 '18 at 17:57
add a comment |
The solution was simple: use ImageView
instead of ImageButton
.
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Try to add to your android:clickable="true"
in RelativeLayout
also android:focusable="true"
and android:focusableInTouchMode="true"
Unfortunately it doesn't work
– proninyaroslav
Nov 13 '18 at 17:57
add a comment |
Try to add to your android:clickable="true"
in RelativeLayout
also android:focusable="true"
and android:focusableInTouchMode="true"
Unfortunately it doesn't work
– proninyaroslav
Nov 13 '18 at 17:57
add a comment |
Try to add to your android:clickable="true"
in RelativeLayout
also android:focusable="true"
and android:focusableInTouchMode="true"
Try to add to your android:clickable="true"
in RelativeLayout
also android:focusable="true"
and android:focusableInTouchMode="true"
answered Nov 13 '18 at 16:58
badadinbadadin
23119
23119
Unfortunately it doesn't work
– proninyaroslav
Nov 13 '18 at 17:57
add a comment |
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
add a comment |
The solution was simple: use ImageView
instead of ImageButton
.
add a comment |
The solution was simple: use ImageView
instead of ImageButton
.
add a comment |
The solution was simple: use ImageView
instead of ImageButton
.
The solution was simple: use ImageView
instead of ImageButton
.
answered Nov 14 '18 at 15:31
proninyaroslavproninyaroslav
60210
60210
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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