I have an android activity that has a list view and in each list item there is a button. I want the button and the list item to be clickable but only the button is clickable and the textview on the list item is not clickable. Any idea how could this work ?. Thank you
Try the options:
If you implementet the TextView via XML-Layout use this:
<TextView
//layout and stuff
android:clickable = "true"
android:onClick = "you method name" />
if you implemented it during runtime,
use
TextView tv = new TextView.this
tv.setClickable(true);
I Thing u r Using Coustem List View in Android so u create Buttan And TextView Object in Coustem Adopter View
Add The OnClickListner In Buttan or TextView in Coustem Adopter
buttan.setOnClickListener(new OnClickListener()
{
#Override
public void onClick(View arg0)
{
}
});
textview.setOnClickListener(new OnClickListener()
{
#Override
public void onClick(View arg0)
{
}
});
if U want to click perticuller Buttan or TextView so Use
if(position==0)
{
click Event
}
I faced this problem before, i don't know why this is happening but i made an onclick event on the layout that holds all the list item layout instead of onitemclick event and it works for me
I found the solution for this .. add android:descendantFocusability="blocksDescendants" to the relativelayout in the xml file
Related
I am using listviews instead of button in my application. I want to set OnClickListener() on listview instead of setOnItemClickListener().
here is my code:
listview.setOnClickListener(new View.OnClickListener() {
#Override
public void onClick(View view) {
startActivity(new Intent(getApplicationContext(), BillingActivity1.class));
}
});
can someone suggest a method to do OnClickListener()?
thank you
Ok, I understood your problem.
Lets analyze cases:
Listview with items
If your ListView has some items, the good approach is to set anyway an onItemClickListener and, based on which item has been clicked, do something. You can also do the same thing for each item without considering which item has been pressed, but this is still the best approach.
ListView with no items
From Docs:
the list view will be hidden when there is no data to display.
ListView (usually) has the height set to wrap_content, so even setting the onClickListener on an empty list won't work since the list will result having height of 0, being not able to be clicked (you can't click a view with no height since it is not visible).
Perform actions on an empty ListView
If, as it looks like, you need to do some stuffs on your ListView even if it's empty, just add a Button or a FloatingActionButton to your Activity and then use those: you can both keep the button in any case (like an "Add item" Button) or you can make it visible only if the ListView is empty. something like:
xml
<Button
android:id="#+id/buttonEmptyListStuffs"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="List is empty, click me!"
android:visibility="gone"/>
activity
//init the button and do other stuffs
...
buttonEmptyListStuffs.setOnClickListener(new View.OnClickListener() {
#Override
public void onClick(View v) {
//go to activity 2
}
});
...
List<MyListViewItem> myListViewItems = //init your list of items for the listView
buttonEmptyListStuffs.setVisibility(myListViewItems.size() > 0 ? View.GONE : View.VISIBLE);
...
Note: I wrote this code by hand without compiler so it might not be perfect, just take the concept behind it
As Pskink said from comments
I forgot to mention that ListView has setEmptyView(View) which allows you to set a custom layout for the Listview if it is empty. Refer to his link for a good tutorial
USe this:
listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
#Override
public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) {
startActivity(new Intent(getApplicationContext(), BillingActivity1.class));
}
});
If you really want to handle click on any Point of your listView. You can put the list inside a FrameLayout or LinearLayout and then add your onClickListener on the layout.
findViewById(R.id.my_parent_list_layout).setOnClickListener(new View.OnClickListener() {
#Override
public void onClick(View v) {
// DO your stuff
}
});
If your list item count is empty the dynamaically change the visibility of the list view with a button(switching the visibility with list view and button) and give the click action to the button.
I have a ListView in which each ListItem row contains some TextView and an ImageView.
When the image is clicked some XYZ operation is performed.
But I want to disable onClickListener on rest of the ListItem row.
How can this be done?
Thank You
You need to "play" with ListView settings:
// Enable elements inside listview
myListView.setItemsCanFocus(true);
//disable the focus on the whole list items
myListView.setFocusable(false);
myListView.setFocusableInTouchMode(false);
myListView.setClickable(false);
Next you need to add the attribute onClick in your imageview
<ImageView
android:id="#+id/img"
android:onClick="function"
/>
Function
public void function(View v)
{
...
}
just disable the clickable for the Listview add the android:onclick="call" attribute to the imageview
and declare call method on the corresponding activity of the Listview.
public void call(View view){
//do Something
}
I have a list of items in Listview.
In each row, I have Text and image. Currently, the click effect is there for the entire row. I want to add a specific click effect to text view and image.
How to do that?
I guess you have a custom adapter for your listview... so if you override the getView method, there you can set the onclick listener for each of your views.
image.setOnClickListener(new OnClickListener()
{
#Override
public void onClick()
{
// Do something
}
});
and
text.setOnClickListener(new OnClickListener()
{
#Override
public void onClick()
{
// Do something
}
});
Now, Doyou want the same listener defined in onItemClickListener in each of your views? easy: you can define your performance in another method, and only call it where you want.
I hope this help
Hi I am using a Listview in my application and I created separate xml for the layout of each row of that ListView. Each row contains two ImageView and one One TextView. I want to get which ImageView is clicked on that row.
You can set OnClickListener in Adapter class itself inside getView() and get the Click Listener working for both the images. As, you haven't posted any code it not feasible to guess.
put the tag with each imageView in getView function of the adapter....
imageView.setTag(Postion);
and get in onclick with view that you received......
convertView.setOnClickListener(new View.OnClickListener() {
#Override
public void onClick(View v) {
system.out.println("position"+position)
}});
I want to disable entire list view at the first instance. So how to achieve that?
I have put a button( All buttons are click able from the item in listview) on the customized list view so on click of that button i am doing some processing.After finishing that i want to enable only that item in listview.
I think you have a editext and a button as row items..
In your getview method of your adapter..
edittext.setClickable(false);
edittext.setFocusableInTouchMode(false);
and in onclick of the button put
private OnClickListener btnOnClickListener = new OnClickListener() {
public void onClick(View v) {
edittext.setClickable(true);
edittext.setFocusableInTouchMode(true);
}
};
button.setonClickListener(btnOnClickListener);