Git Product home page Git Product logo

materialtest's Introduction

Material-Design-Test-App

Hi, its Vivz here from slidenerd. Wanna make a material design app without a lot of headaches? You came to the right repository. This app is a movie list downloading app from RottenTomatoes that has the following features which are being continually updated.

  1. Vector + Animated Vector Drawables
  2. Material Style Navigation Drawer
  3. Material Design Floating Action Button With Menu
  4. Volley Integration With Singleton + ImageLoader
  5. Toolbar + Animations
  6. RecyclerView + Animations
  7. Material Design Tabs With Icons

Animated Toolbar

![testgif](https://cloud.githubusercontent.com/assets/5139030/6665955/969d5d70-cc05-11e4-9691-fe776b18224c.gif)

RecyclerView with Animations

![testgif](https://cloud.githubusercontent.com/assets/5139030/6665960/a8bc08ee-cc05-11e4-8294-cf9b62de7264.gif)

Material Drawer

![testgif](https://cloud.githubusercontent.com/assets/5139030/6666009/1516139a-cc06-11e4-9134-4d68d4af56ce.gif)

SlidingTabLayout with VectorDrawables

![testgif](https://cloud.githubusercontent.com/assets/5139030/6666059/851f87fc-cc06-11e4-88e9-f52a4f5dddb8.gif)

Animated VectorDrawables

![testgif](https://cloud.githubusercontent.com/assets/5139030/6666086/c75a84a0-cc06-11e4-94dc-654745d8f08b.gif)

Recycler Item Animators

![testgif](https://cloud.githubusercontent.com/assets/5139030/6666103/fc402576-cc06-11e4-90be-d710a6c720dd.gif)

Dynamic Material Tabs

![testgif](https://cloud.githubusercontent.com/assets/5139030/6666135/5ecb0c6a-cc07-11e4-80ff-c2c4b5689cda.gif)

Floating Action Button With Menu

![testgif](https://cloud.githubusercontent.com/assets/5139030/6666153/87ef8580-cc07-11e4-8c05-b6640b1ad993.gif)

materialtest's People

Contributors

slidenerd avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

materialtest's Issues

Some files are missing...

Hi, i recently checkout this project and i get these errors:

  1. Are missing ic_action_search, ic_action_trending.

  2. In Requestor class, "reference to JsonObjectRequest is ambiguous ..."

    JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET,
    url,
    null, requestFuture, requestFuture);

Thanks

sort listener not working properly

after refreshing the data sort listener not work till we start app again after force close means
it only sort data when data loaded from sqlite.

Make the row clickable to move another activity with Ripple effect

Hi @slidenerd,

First of all thanks for you Material Design video tutorial.

I have two issues.
First one is, when i try click on the link on RecyclerView, it moves to sub activity only when click on the icon of menu list. So i added click listener for title too. Now it works, but ripple effect is only working when i click other than icon and title. I want to implement the click event anywhere on the item with ripple effect and it should take me to sub activity.

class MyViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener {

    TextView title;
    ImageView item;

    public MyViewHolder(View itemView) {
        super(itemView);
        title = (TextView) itemView.findViewById(R.id.listMessage);
        item = (ImageView) itemView.findViewById(R.id.listItem);
        item.setOnClickListener(this);
        title.setOnClickListener(this);
    }

    @Override
    public void onClick(View v) {
        //Toast.makeText(context, "Item clicked at " + getPosition(), Toast.LENGTH_SHORT).show();
        //delete(getPosition());
        context.startActivity(new Intent(context, SubActivity.class));
    }
}    

Also i when back to MainActivity from SubActivity the Navigation is still in open status.

How do i solve it?

Question regarding SlidingTabLayout

I Saw your tutorial #27 Android SlidingTabLayout With Icons: Android Tutorials.

My tab Strip looks like :
A | B | C => where A,B,C are images.
For the second Tab "B" I have 3 sets of images img1, img2, img3.
Based on certain condition I want to change the image for Tab "B" in "onPageChangeListerner" .

How to achieve this behavior?

I have an issue with JsonObjectRequest !

Hi Vivs,
I just starting following your tutorial on YouTube when I facing this error with the JsonObjectRequest
The error said "Cannot resolve the constructor"
The constructor does not take the null for the JSONObject for the following constructor as in the documentation:

public JsonObjectRequest(int method,
String url,
JSONObject jsonRequest,
Response.Listener listener,
Response.ErrorListener errorListener)

when I remove the JSONObject argument the request is compile but it does not succeed in getting the Json
are the volley lib getting updated or I did some thing wrong here?
thanks in advance
Screen shot of the error

Question - Not About This Project

Hi Vivz
TnQ for ur youtube channel. they are amazing and I've seen the "android storage", "android tutorial" and "material design" sections.
I have a question about my new android project, but its not releative with this project.
i know how to make a good android offline application. but i didnt work any server side and with online db on android. i want to make an android app that has an online registration ( in an online database ). the user must register an account with app on internet and then he/she can use the app.
but i dont know how to make an online android app. Ive searched a lot in internet about how to make a database in a host with mySQL but i dont know where to start and i dont know anything about web programming.
Can u plz help me with a step-by-step guide and give me links and guide me?

Sorry for my bad English
TnQ

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.