У меня есть несколько изображений в ViewPager
, которые пользователь может пролистывать, мне нужно, чтобы имя изображения отображалось в TextView
.Я просто наклоняюсь java
, и представляю, что код будет примерно таким.
private void displayName (String name) {
/*
This is the code to get the name of the image that appears in the ViewPager
*/
ViewPager swipeImages = (ViewPager) findViewById(R.id.myImageSwipe);
String backgroundImageName = String.valueOf(swipeImages.getTag());
/*
This is the textView where I need the name of the image file to display
*/
TextView imageNameTextView = (TextView) findViewById(R.id.nameImage);
imageNameTextView.setText(name);
displayName(backgroundImageName);
}