Skip to content

Conversation

@RohanBh
Copy link

@RohanBh RohanBh commented Feb 8, 2017

Assignment #1

android:scaleType="centerCrop"
android:id="@+id/movie_image" />

<LinearLayout
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Linear Layout is not required here. All the views can be directly a child of the Relative Layout.

android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Good luck with your assignments" />
<android.support.v7.widget.RecyclerView
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

RecyclerView is an extension of a view group, and can be used as root layout in absence of other views, which is the case here.

MoviesAdapter adapter=new MoviesAdapter(myMovies,this);
movieList.setAdapter(adapter);
movieList.setLayoutManager(new LinearLayoutManager(this));
movieList.setHasFixedSize(true);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use this with caution. Refer here .

@kdexd
Copy link

kdexd commented Feb 12, 2017

@RohanBh Please work on review comments, resolve merge conflicts (as I merged Dakshit's PR with master first, the updated master has conflicts in three files. If there is nothing to work on review comments, just respond something. End this today.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants