Android Open Source - AndroidStudioSandbox Recycler List View Holder






From Project

Back to project page AndroidStudioSandbox.

License

The source code is released under:

Apache License

If you think the Android project AndroidStudioSandbox listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package at.mg.androidstudiosandbox.things;
/*www. j ava 2  s. co  m*/
import android.support.v7.widget.RecyclerView;
import android.view.View;
import android.widget.TextView;

import at.mg.androidstudiosandbox.R;

/**
 * ViewHolder for the RecyclerView
 * <p/>
 * Created by Markus on 12.12.2014.
 */
public class RecyclerListViewHolder extends RecyclerView.ViewHolder {

    public TextView title, desc, date;

    public RecyclerListViewHolder(View itemView) {
        super(itemView);

        title = (TextView) itemView.findViewById(R.id.recentry_title);
        desc = (TextView) itemView.findViewById(R.id.recentry_desc);
        date = (TextView) itemView.findViewById(R.id.recentry_date);

    }
}




Java Source Code List

at.mg.androidstudiosandbox.AndroidStudioShortcuts.java
at.mg.androidstudiosandbox.ApplicationTest.java
at.mg.androidstudiosandbox.WearHomeActivity.java
at.mg.androidstudiosandbox.activities.HomeActivity.java
at.mg.androidstudiosandbox.activities.ToolbarActivity.java
at.mg.androidstudiosandbox.activities.VoiceSearchableActivity.java
at.mg.androidstudiosandbox.adapters.RecyclerAdapter.java
at.mg.androidstudiosandbox.fragments.NavigationDrawerFragment.java
at.mg.androidstudiosandbox.fragments.PlaceholderFragment.java
at.mg.androidstudiosandbox.fragments.RecyclerFragment.java
at.mg.androidstudiosandbox.things.RecyclerDataObject.java
at.mg.androidstudiosandbox.things.RecyclerListViewHolder.java