Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6940749
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T12:47:34+00:00 2026-05-27T12:47:34+00:00

I am implementing Pakerfeldts’ viewflow (Specifically the ‘DiffViewFlowExample’) in my main activity and I

  • 0

I am implementing Pakerfeldts’ viewflow (Specifically the ‘DiffViewFlowExample’) in my main activity and I cant figure how to add click listeners to ImageButtons that are in my inflated views.

So how do I add a click listener to the image button w/an @id=regulatoryDocsBtn located in the dashboard_view?

Below are code snippets & I thank you in advance for any help.

Main Activity Class:

public class Home extends Activity {

  @Override
  protected void onCreate(final Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);

  /**
   * Setup the ViewFlow
   * w/TitleFlow------------------------------------------
   */
   ViewFlow viewFlow = (ViewFlow) findViewById(R.id.viewflow);
   DiffAdapter vfAdapter = new DiffAdapter(this);
   viewFlow.setAdapter(vfAdapter);

   TitleFlowIndicator indicator = (TitleFlowIndicator) findViewById(R.id.viewflowindic);
   indicator.setTitleProvider(vfAdapter);
   viewFlow.setFlowIndicator(indicator);
}

DiffAdapter Class:Note:The inflated views are @ the bottom of this class.

public class DiffAdapter extends BaseAdapter implements TitleProvider {

private static final int VIEW1 = 0;
private static final int VIEW2 = 1;
private static final int VIEW_MAX_COUNT = VIEW2 + 1;
private final String[] names = { "DashBoard", "ToolBox" };

private LayoutInflater mInflater;

public DiffAdapter(Context context) {
mInflater = (LayoutInflater) context
    .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
}

@Override(S)...............

@Override
public View getView(int position, View convertView, ViewGroup parent) {
int view = getItemViewType(position);
if (convertView == null) {
    switch (view) {
    case VIEW1:
    convertView = mInflater.inflate(R.layout.dashboard_view, null);
    break;
    case VIEW2:
    convertView = mInflater.inflate(R.layout.toolbox_view, null);
    break;
    }
}
return convertView;
}

A Snippet of one of the views:dashboard_view.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:weightSum="1" >

<TableLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#10000000"
    android:stretchColumns="*" >

    <!-- Row 1 -->

    <TableRow android:layout_weight="1" >

        <RelativeLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1" >

            <ImageButton
                android:id="@+id/regulatoryDocsBtn"
                style="@style/dashBoardimageBtn"
                android:src="@drawable/ic_launcher_regulatory" />

            <TextView
                style="@style/dashBoardTxt"
                android:layout_below="@id/regulatoryDocsBtn"
                android:text="Regulatory Docs" />
        </RelativeLayout>
        .....
        </TableRow>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T12:47:35+00:00Added an answer on May 27, 2026 at 12:47 pm

    You can add the property onClick to the button in the xml, indicating the name of the method to execute.

    The method must have a View param.

    For example:

    In XML layout:

    <Button android:id="@+id/testButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Click me!"
        android:onClick="testClick" />
    

    In Activity code:

    public void testClick(View v) {
        // The code to be executed on click
    }
    

    Hope it helps.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

implementing publishActivity in PHP using the REST API using this code: $activity = array(
Im implementing a project in java using webservices and I need to figure out
Im implementing a ZoomButtonsController in my custom View and have been trying to figure
Implementing Equals() for reference types is harder than it seems. My current canonical implementation
Implementing a 'sandbox' environment in Python used to be done with the rexec module
Implementing the ScriptControlClass was extremely easy, unfortunately the side effects with the language implementation
When implementing a needle search of a haystack in an object-oriented way, you essentially
When implementing Quicksort, one of the things you have to do is to choose
I implementing a EventQueue and get notified when AWTEvents are send. I wait till
When implementing a singleton in C++, is it better for GetInstance() to return a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.