how to display full screen image with text in android oni tem click lister from adapter class
Hi in the below adapter class am displaying list of images with title.once we click on particular item i want to display same image and bottom title .
using intent am getting pos of the item image url how to display that image in next activity in imageview.
can any one please help me how to do it.
Adapter.class:
public class RecyclerViewAdapterForAlbum extends RecyclerView.Adapter<RecyclerViewAdapterForAlbum.ViewHolder> {
private List<UserAlbum> item;
Context context ;
SharedPreferences pref;
public RecyclerViewAdapterForAlbum(Context context, List<UserAlbum> item ) {
Log.d("123", "RecyclerViewAdapter");
this.item = item;
this.context = context;
}
@Override
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
Log.d("123", "onCreateViewHolder");
View view = LayoutInflater.from(context).inflate(R.layout.activity_second, null);
return new ViewHolder(view);
}
@Override
public void onBindViewHolder(ViewHolder holder, int position) {
pref =context.getSharedPreferences("MyPref", 0); // 0 - for private mode
int user_ids=pref.getInt("userID",0);
int Album_id=item.get(position).getAlbumId();
if(Album_id==user_ids) {
Log.d("123", "onBindViewHolder");
holder.user_id.setText(String.valueOf(item.get(position).getId()));
holder.album_id.setText(String.valueOf(item.get(position).getAlbumId()));
holder.title.setText(item.get(position).getTitle());
//Bitmap getBitMapFromUrl=null;
Picasso.get().load(item.get(position).getThumbnailUrl()).into(holder.imageForText);
}
else{
Toast.makeText(context,"No Data Found",Toast.LENGTH_LONG).show();
}
}
@Override
public int getItemCount() {
Log.d("123", "getItemCount");
return item.size();
}
public class ViewHolder extends RecyclerView.ViewHolder {
public TextView album_id, user_id,title;
public ImageView imageForText;
public ViewHolder(final View itemView) {
super(itemView);
Log.d("123", "ViewHolder");
user_id = (TextView) itemView.findViewById(R.id.user_id);
album_id=(TextView)itemView.findViewById(R.id.album_id);
title=(TextView)itemView.findViewById(R.id.title);
imageForText=(ImageView)itemView.findViewById(R.id.img_id);
itemView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
int pos = getAdapterPosition();
int userID=item.get(pos).getId();
int albumId=item.get(pos).getAlbumId();
String imgpos=item.get(pos).getThumbnailUrl();
Intent myIntent = new Intent(v.getContext(), ThirdActivity.class);
myIntent.putExtra("userID",userID);
myIntent.putExtra("albumId",albumId);
myIntent.putExtra("imgpos",imgpos);
context.startActivity(myIntent);
}
});
}
}
}
ThirdActivity.class:
public class ThirdActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_photo);
String position=getIntent().getExtras().getString("imgpos");
ImageView imageView=(ImageView)findViewById(R.id.full_image_view);
Picasso.get().load(savedInstanceState.get(position).toString()).into(imageView);
}
}
android imageview fullscreen
add a comment |
Hi in the below adapter class am displaying list of images with title.once we click on particular item i want to display same image and bottom title .
using intent am getting pos of the item image url how to display that image in next activity in imageview.
can any one please help me how to do it.
Adapter.class:
public class RecyclerViewAdapterForAlbum extends RecyclerView.Adapter<RecyclerViewAdapterForAlbum.ViewHolder> {
private List<UserAlbum> item;
Context context ;
SharedPreferences pref;
public RecyclerViewAdapterForAlbum(Context context, List<UserAlbum> item ) {
Log.d("123", "RecyclerViewAdapter");
this.item = item;
this.context = context;
}
@Override
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
Log.d("123", "onCreateViewHolder");
View view = LayoutInflater.from(context).inflate(R.layout.activity_second, null);
return new ViewHolder(view);
}
@Override
public void onBindViewHolder(ViewHolder holder, int position) {
pref =context.getSharedPreferences("MyPref", 0); // 0 - for private mode
int user_ids=pref.getInt("userID",0);
int Album_id=item.get(position).getAlbumId();
if(Album_id==user_ids) {
Log.d("123", "onBindViewHolder");
holder.user_id.setText(String.valueOf(item.get(position).getId()));
holder.album_id.setText(String.valueOf(item.get(position).getAlbumId()));
holder.title.setText(item.get(position).getTitle());
//Bitmap getBitMapFromUrl=null;
Picasso.get().load(item.get(position).getThumbnailUrl()).into(holder.imageForText);
}
else{
Toast.makeText(context,"No Data Found",Toast.LENGTH_LONG).show();
}
}
@Override
public int getItemCount() {
Log.d("123", "getItemCount");
return item.size();
}
public class ViewHolder extends RecyclerView.ViewHolder {
public TextView album_id, user_id,title;
public ImageView imageForText;
public ViewHolder(final View itemView) {
super(itemView);
Log.d("123", "ViewHolder");
user_id = (TextView) itemView.findViewById(R.id.user_id);
album_id=(TextView)itemView.findViewById(R.id.album_id);
title=(TextView)itemView.findViewById(R.id.title);
imageForText=(ImageView)itemView.findViewById(R.id.img_id);
itemView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
int pos = getAdapterPosition();
int userID=item.get(pos).getId();
int albumId=item.get(pos).getAlbumId();
String imgpos=item.get(pos).getThumbnailUrl();
Intent myIntent = new Intent(v.getContext(), ThirdActivity.class);
myIntent.putExtra("userID",userID);
myIntent.putExtra("albumId",albumId);
myIntent.putExtra("imgpos",imgpos);
context.startActivity(myIntent);
}
});
}
}
}
ThirdActivity.class:
public class ThirdActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_photo);
String position=getIntent().getExtras().getString("imgpos");
ImageView imageView=(ImageView)findViewById(R.id.full_image_view);
Picasso.get().load(savedInstanceState.get(position).toString()).into(imageView);
}
}
android imageview fullscreen
implement the callback on item click and display the image in same activity
– Zahoor Saleem
Nov 14 '18 at 19:24
add a comment |
Hi in the below adapter class am displaying list of images with title.once we click on particular item i want to display same image and bottom title .
using intent am getting pos of the item image url how to display that image in next activity in imageview.
can any one please help me how to do it.
Adapter.class:
public class RecyclerViewAdapterForAlbum extends RecyclerView.Adapter<RecyclerViewAdapterForAlbum.ViewHolder> {
private List<UserAlbum> item;
Context context ;
SharedPreferences pref;
public RecyclerViewAdapterForAlbum(Context context, List<UserAlbum> item ) {
Log.d("123", "RecyclerViewAdapter");
this.item = item;
this.context = context;
}
@Override
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
Log.d("123", "onCreateViewHolder");
View view = LayoutInflater.from(context).inflate(R.layout.activity_second, null);
return new ViewHolder(view);
}
@Override
public void onBindViewHolder(ViewHolder holder, int position) {
pref =context.getSharedPreferences("MyPref", 0); // 0 - for private mode
int user_ids=pref.getInt("userID",0);
int Album_id=item.get(position).getAlbumId();
if(Album_id==user_ids) {
Log.d("123", "onBindViewHolder");
holder.user_id.setText(String.valueOf(item.get(position).getId()));
holder.album_id.setText(String.valueOf(item.get(position).getAlbumId()));
holder.title.setText(item.get(position).getTitle());
//Bitmap getBitMapFromUrl=null;
Picasso.get().load(item.get(position).getThumbnailUrl()).into(holder.imageForText);
}
else{
Toast.makeText(context,"No Data Found",Toast.LENGTH_LONG).show();
}
}
@Override
public int getItemCount() {
Log.d("123", "getItemCount");
return item.size();
}
public class ViewHolder extends RecyclerView.ViewHolder {
public TextView album_id, user_id,title;
public ImageView imageForText;
public ViewHolder(final View itemView) {
super(itemView);
Log.d("123", "ViewHolder");
user_id = (TextView) itemView.findViewById(R.id.user_id);
album_id=(TextView)itemView.findViewById(R.id.album_id);
title=(TextView)itemView.findViewById(R.id.title);
imageForText=(ImageView)itemView.findViewById(R.id.img_id);
itemView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
int pos = getAdapterPosition();
int userID=item.get(pos).getId();
int albumId=item.get(pos).getAlbumId();
String imgpos=item.get(pos).getThumbnailUrl();
Intent myIntent = new Intent(v.getContext(), ThirdActivity.class);
myIntent.putExtra("userID",userID);
myIntent.putExtra("albumId",albumId);
myIntent.putExtra("imgpos",imgpos);
context.startActivity(myIntent);
}
});
}
}
}
ThirdActivity.class:
public class ThirdActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_photo);
String position=getIntent().getExtras().getString("imgpos");
ImageView imageView=(ImageView)findViewById(R.id.full_image_view);
Picasso.get().load(savedInstanceState.get(position).toString()).into(imageView);
}
}
android imageview fullscreen
Hi in the below adapter class am displaying list of images with title.once we click on particular item i want to display same image and bottom title .
using intent am getting pos of the item image url how to display that image in next activity in imageview.
can any one please help me how to do it.
Adapter.class:
public class RecyclerViewAdapterForAlbum extends RecyclerView.Adapter<RecyclerViewAdapterForAlbum.ViewHolder> {
private List<UserAlbum> item;
Context context ;
SharedPreferences pref;
public RecyclerViewAdapterForAlbum(Context context, List<UserAlbum> item ) {
Log.d("123", "RecyclerViewAdapter");
this.item = item;
this.context = context;
}
@Override
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
Log.d("123", "onCreateViewHolder");
View view = LayoutInflater.from(context).inflate(R.layout.activity_second, null);
return new ViewHolder(view);
}
@Override
public void onBindViewHolder(ViewHolder holder, int position) {
pref =context.getSharedPreferences("MyPref", 0); // 0 - for private mode
int user_ids=pref.getInt("userID",0);
int Album_id=item.get(position).getAlbumId();
if(Album_id==user_ids) {
Log.d("123", "onBindViewHolder");
holder.user_id.setText(String.valueOf(item.get(position).getId()));
holder.album_id.setText(String.valueOf(item.get(position).getAlbumId()));
holder.title.setText(item.get(position).getTitle());
//Bitmap getBitMapFromUrl=null;
Picasso.get().load(item.get(position).getThumbnailUrl()).into(holder.imageForText);
}
else{
Toast.makeText(context,"No Data Found",Toast.LENGTH_LONG).show();
}
}
@Override
public int getItemCount() {
Log.d("123", "getItemCount");
return item.size();
}
public class ViewHolder extends RecyclerView.ViewHolder {
public TextView album_id, user_id,title;
public ImageView imageForText;
public ViewHolder(final View itemView) {
super(itemView);
Log.d("123", "ViewHolder");
user_id = (TextView) itemView.findViewById(R.id.user_id);
album_id=(TextView)itemView.findViewById(R.id.album_id);
title=(TextView)itemView.findViewById(R.id.title);
imageForText=(ImageView)itemView.findViewById(R.id.img_id);
itemView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
int pos = getAdapterPosition();
int userID=item.get(pos).getId();
int albumId=item.get(pos).getAlbumId();
String imgpos=item.get(pos).getThumbnailUrl();
Intent myIntent = new Intent(v.getContext(), ThirdActivity.class);
myIntent.putExtra("userID",userID);
myIntent.putExtra("albumId",albumId);
myIntent.putExtra("imgpos",imgpos);
context.startActivity(myIntent);
}
});
}
}
}
ThirdActivity.class:
public class ThirdActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_photo);
String position=getIntent().getExtras().getString("imgpos");
ImageView imageView=(ImageView)findViewById(R.id.full_image_view);
Picasso.get().load(savedInstanceState.get(position).toString()).into(imageView);
}
}
android imageview fullscreen
android imageview fullscreen
asked Nov 14 '18 at 19:19
jyothi chandra
237
237
implement the callback on item click and display the image in same activity
– Zahoor Saleem
Nov 14 '18 at 19:24
add a comment |
implement the callback on item click and display the image in same activity
– Zahoor Saleem
Nov 14 '18 at 19:24
implement the callback on item click and display the image in same activity
– Zahoor Saleem
Nov 14 '18 at 19:24
implement the callback on item click and display the image in same activity
– Zahoor Saleem
Nov 14 '18 at 19:24
add a comment |
0
active
oldest
votes
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%2f53307364%2fhow-to-display-full-screen-image-with-text-in-android-oni-tem-click-lister-from%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f53307364%2fhow-to-display-full-screen-image-with-text-in-android-oni-tem-click-lister-from%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
implement the callback on item click and display the image in same activity
– Zahoor Saleem
Nov 14 '18 at 19:24