Skip to content

Commit

Permalink
update version 1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
shts committed Nov 22, 2015
1 parent b1c3db0 commit 55601fb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "shts.jp.android.nogifeed"
minSdkVersion 10
targetSdkVersion 21
versionCode 13
versionName "1.2.2"
versionCode 14
versionName "1.2.3"
}
buildTypes {
debug {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;

import java.util.List;

import shts.jp.android.nogifeed.R;
import shts.jp.android.nogifeed.activities.BlogActivity;
import shts.jp.android.nogifeed.common.Logger;
import shts.jp.android.nogifeed.entities.Entry;
import shts.jp.android.nogifeed.utils.DateUtils;
Expand All @@ -35,6 +37,7 @@ public FavoriteFeedListAdapter(Context context, List list) {

class ViewHolder extends RecyclerView.ViewHolder {

LinearLayout labelView;
ImageView backgroudImageView;
ImageView profileImageView;
TextView titleTextView;
Expand All @@ -43,6 +46,7 @@ class ViewHolder extends RecyclerView.ViewHolder {

public ViewHolder(View view) {
super(view);
labelView = (LinearLayout) view.findViewById(R.id.card_rebel);
titleTextView = (TextView) view.findViewById(R.id.card_title);
autherTextView = (TextView) view.findViewById(R.id.authorname);
backgroudImageView = (ImageView) view.findViewById(R.id.card_background);
Expand All @@ -66,7 +70,7 @@ public void onBindViewHolder(RecyclerView.ViewHolder viewHolder, Object object)
holder.backgroudImageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
//IntentUtils.startBlogActivity(mContext, entry);
mContext.startActivity(BlogActivity.getStartIntent(mContext, entry.toBlogEntry()));
TrackerUtils.sendTrack(mContext, TAG,
"OnClicked", "-> Blog : " + "entry(" + entry.toString() + ")");
}
Expand Down

0 comments on commit 55601fb

Please sign in to comment.