Why it is not showing image in a recycler view? - android-studio

(https://i.stack.imgur.com/2DxeM.jpg)](https://i.stack.imgur.com/8XcPR.jpg)(https://i.stack.imgur.com/8HZoq.jpg)](https://i.stack.imgur.com/fVNtz.jpg)](https://i.stack.imgur.com/8XWnf.jpg)
i am expecting that it should display images in the recycler view as wallpapers.

Related

Render partial view overwriting the same page in Express JS

I am having a grid records and a button at the top of the grid. Once a record is selected from the grid and button is clicked, I have to render a partial view with a form inside. I don't know how to render partial views from controller. Please find my folder structure below:
--views
--partials
--header
--footer
--main
--form_page
--route
--index
--api
--grid
Header and footer is default for all the pages. Initially main page will be rendered as partial view. I have to replace it with form_page after the button click. It is based on express js and handlebars.

How to set Label at bottom of the screen in J2ME with LWUIT?

I am displaying the main form in Box Layout.In that box layout,taken Label in another container which has been set as border layout. Now this container is added to main form.
following is my code :-
lblversion=new Label((String)keyvalues.get("lbl_versionnumber"));
lblversion.setAlignment(lblversion.RIGHT);
lblversion.setVerticalAlignment(lblversion.BOTTOM);
Container row0= new Container(new BorderLayout());
row0.addComponent(BorderLayout.SOUTH,lblversion);
this.addComponent(row0);
Now my problem is that i want to show label at bottom of the screen,but it shows after all the components have been added in form (not at bottom).
I have also attached image.. you can see it and get idea of it.
So is there any option to set label at bottom of the screen in J2ME with LWUIT ?
If any one has idea,please help me.
Set Main Form as Border Layout and keep all components in 1 container which should be BoxLayout and then put these container in main Form with Given Attribute of BorderLayout
And Remove Container from label and insert directly label to main form as such it has been given BorderLayout so add your Label in this Format and all Other components
this.addComponent(BorderLayout.SOUTH,lblversion);

Why no back button on DateElement picker?

This walkthrough for MT.D shows a back button on the UIDatePicker that appears when a DateElement is tapped. I'm in an iPad app, and using an MT.D DialogViewController as a subview in an overall UIView. When the date picker slides up I just get the black background with no way to dismiss the picker (no nav bar w/ back button). Same problem exists for the radio group picker. Is this because the dialog view controller is being used as a subview? Any ideas how I might get a nav bar up with a back button using the built-in picker logic?
You must use the DialogViewController as a child element of a UINavigationController to get the back button. On iPad, you can embed the UINavigationController in a UIPopoverController.
Adding the view of a controller into the view of another controller is not considered good design on iOS and won't result in the behavior you expect.

Why is my root view controller in the wrong orientation if the iPad is rotated while a modal view controller is displayed?

I have a simple view controller that is the root view controller in my application's UIWindow. At some point, I have the root view controller present a modal view controller. Nothing special.
However, if I then rotate the device while the modal view controller is displayed, and then dismiss that modal view controller, the original root view controller is in the wrong orientation.
Since Apple removed the ability to set an orientation (e.g., [[UIDevice currentDevice] setOrientation:myOrientation]), I'm at a loss as to how I can force the root view controller to be in the correct orientation when I dismiss the modal view controller that it displays.
Any ideas? Or am I stuck in the depths of iOS orientation hell?
For the record: the modal view controller is presented by the root view controller. I've read somewhere that this helps - it doesn't.

ScrollView with paging iphone sdk

in the main view controller i have a scrollview and paging control.
i have added another viewcontroller's view as a page of paging control in scrollview.
now i have 9 buttons on that view controller's view which is inside scroll view.
now when i click on the buton i wants that main view controller's view should be pushed to another view controller.
but not getting how it can be done as the buttons are in view which is in the scrollview.
When a user interface element created in interface builder seems not to be doing what you told it to do, you should verify that:
you saved your changes to the nib in IB
that you correctly declared your ivars/properties as IBOutlet and connected your outlets in IB
that there are no views hijacking your events.
If the buttons in your view inside the scroll view don't appear to be getting press events, you may need to adjust the userInteractionEnabled property of parent views.
You can "move" any view from one view hierarchy to another by doing:
[myView removeFromSuperview];
[anotherParentView addSubview:myView];

Resources