Skip to content

Commit

Permalink
project structure cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
frogermcs committed Feb 8, 2015
1 parent cabb984 commit 9c62d60
Show file tree
Hide file tree
Showing 23 changed files with 53 additions and 35 deletions.
6 changes: 3 additions & 3 deletions app/src/main/AndroidManifest.xml
Expand Up @@ -10,19 +10,19 @@
android:label="@string/app_name" android:label="@string/app_name"
android:theme="@style/AppTheme"> android:theme="@style/AppTheme">
<activity <activity
android:name="io.github.froger.instamaterial.MainActivity" android:name=".ui.activity.MainActivity"
android:screenOrientation="portrait"> android:screenOrientation="portrait">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" /> <category android:name="android.intent.category.LAUNCHER" />
</intent-filter> </intent-filter>
</activity> </activity>
<activity <activity
android:name="io.github.froger.instamaterial.CommentsActivity" android:name=".ui.activity.CommentsActivity"
android:screenOrientation="portrait" android:screenOrientation="portrait"
android:theme="@style/AppTheme.TransparentActivity" /> android:theme="@style/AppTheme.TransparentActivity" />
<activity <activity
android:name="io.github.froger.instamaterial.UserProfileActivity" android:name=".ui.activity.UserProfileActivity"
android:screenOrientation="portrait" android:screenOrientation="portrait"
android:theme="@style/AppTheme.TransparentActivity" /> android:theme="@style/AppTheme.TransparentActivity" />
</application> </application>
Expand Down
@@ -1,4 +1,4 @@
package io.github.froger.instamaterial; package io.github.froger.instamaterial.ui.activity;


import android.os.Handler; import android.os.Handler;
import android.support.v4.widget.DrawerLayout; import android.support.v4.widget.DrawerLayout;
Expand All @@ -12,7 +12,10 @@


import butterknife.ButterKnife; import butterknife.ButterKnife;
import butterknife.InjectView; import butterknife.InjectView;
import io.github.froger.instamaterial.view.GlobalMenuView; import io.github.froger.instamaterial.ui.utils.DrawerLayoutInstaller;
import io.github.froger.instamaterial.R;
import io.github.froger.instamaterial.Utils;
import io.github.froger.instamaterial.ui.view.GlobalMenuView;


/** /**
* Created by Miroslaw Stanek on 19.01.15. * Created by Miroslaw Stanek on 19.01.15.
Expand Down
@@ -1,4 +1,4 @@
package io.github.froger.instamaterial; package io.github.froger.instamaterial.ui.activity;


import android.animation.Animator; import android.animation.Animator;
import android.animation.AnimatorListenerAdapter; import android.animation.AnimatorListenerAdapter;
Expand All @@ -16,7 +16,10 @@
import android.widget.LinearLayout; import android.widget.LinearLayout;


import butterknife.InjectView; import butterknife.InjectView;
import io.github.froger.instamaterial.view.SendCommentButton; import io.github.froger.instamaterial.ui.adapter.CommentsAdapter;
import io.github.froger.instamaterial.R;
import io.github.froger.instamaterial.Utils;
import io.github.froger.instamaterial.ui.view.SendCommentButton;


/** /**
* Created by froger_mcs on 11.11.14. * Created by froger_mcs on 11.11.14.
Expand Down
@@ -1,4 +1,4 @@
package io.github.froger.instamaterial; package io.github.froger.instamaterial.ui.activity;


import android.animation.Animator; import android.animation.Animator;
import android.animation.AnimatorListenerAdapter; import android.animation.AnimatorListenerAdapter;
Expand All @@ -12,8 +12,11 @@
import android.widget.ImageButton; import android.widget.ImageButton;


import butterknife.InjectView; import butterknife.InjectView;
import io.github.froger.instamaterial.view.FeedContextMenu; import io.github.froger.instamaterial.ui.adapter.FeedAdapter;
import io.github.froger.instamaterial.view.FeedContextMenuManager; import io.github.froger.instamaterial.R;
import io.github.froger.instamaterial.Utils;
import io.github.froger.instamaterial.ui.view.FeedContextMenu;
import io.github.froger.instamaterial.ui.view.FeedContextMenuManager;




public class MainActivity extends BaseActivity implements FeedAdapter.OnFeedItemClickListener, public class MainActivity extends BaseActivity implements FeedAdapter.OnFeedItemClickListener,
Expand Down
@@ -1,4 +1,4 @@
package io.github.froger.instamaterial; package io.github.froger.instamaterial.ui.activity;


import android.app.Activity; import android.app.Activity;
import android.content.Intent; import android.content.Intent;
Expand All @@ -9,7 +9,9 @@
import android.view.ViewTreeObserver; import android.view.ViewTreeObserver;


import butterknife.InjectView; import butterknife.InjectView;
import io.github.froger.instamaterial.view.RevealBackgroundView; import io.github.froger.instamaterial.R;
import io.github.froger.instamaterial.ui.adapter.UserProfileAdapter;
import io.github.froger.instamaterial.ui.view.RevealBackgroundView;


/** /**
* Created by Miroslaw Stanek on 14.01.15. * Created by Miroslaw Stanek on 14.01.15.
Expand Down
@@ -1,4 +1,4 @@
package io.github.froger.instamaterial; package io.github.froger.instamaterial.ui.adapter;


import android.animation.Animator; import android.animation.Animator;
import android.animation.AnimatorListenerAdapter; import android.animation.AnimatorListenerAdapter;
Expand All @@ -15,6 +15,8 @@


import butterknife.ButterKnife; import butterknife.ButterKnife;
import butterknife.InjectView; import butterknife.InjectView;
import io.github.froger.instamaterial.R;
import io.github.froger.instamaterial.ui.utils.RoundedTransformation;


/** /**
* Created by froger_mcs on 11.11.14. * Created by froger_mcs on 11.11.14.
Expand Down
@@ -1,4 +1,4 @@
package io.github.froger.instamaterial; package io.github.froger.instamaterial.ui.adapter;


import android.animation.Animator; import android.animation.Animator;
import android.animation.AnimatorListenerAdapter; import android.animation.AnimatorListenerAdapter;
Expand All @@ -23,6 +23,8 @@


import butterknife.ButterKnife; import butterknife.ButterKnife;
import butterknife.InjectView; import butterknife.InjectView;
import io.github.froger.instamaterial.R;
import io.github.froger.instamaterial.Utils;


/** /**
* Created by froger_mcs on 05.11.14. * Created by froger_mcs on 05.11.14.
Expand Down
@@ -1,4 +1,4 @@
package io.github.froger.instamaterial; package io.github.froger.instamaterial.ui.adapter;


import android.content.Context; import android.content.Context;
import android.view.LayoutInflater; import android.view.LayoutInflater;
Expand All @@ -13,6 +13,7 @@


import butterknife.ButterKnife; import butterknife.ButterKnife;
import butterknife.InjectView; import butterknife.InjectView;
import io.github.froger.instamaterial.R;


/** /**
* Created by Miroslaw Stanek on 30.01.15. * Created by Miroslaw Stanek on 30.01.15.
Expand Down
@@ -1,4 +1,4 @@
package io.github.froger.instamaterial; package io.github.froger.instamaterial.ui.adapter;


import android.content.Context; import android.content.Context;
import android.support.v7.widget.RecyclerView; import android.support.v7.widget.RecyclerView;
Expand All @@ -22,6 +22,9 @@


import butterknife.ButterKnife; import butterknife.ButterKnife;
import butterknife.InjectView; import butterknife.InjectView;
import io.github.froger.instamaterial.ui.utils.CircleTransformation;
import io.github.froger.instamaterial.R;
import io.github.froger.instamaterial.Utils;


/** /**
* Created by Miroslaw Stanek on 20.01.15. * Created by Miroslaw Stanek on 20.01.15.
Expand Down
@@ -1,4 +1,4 @@
package io.github.froger.instamaterial; package io.github.froger.instamaterial.ui.utils;


import android.graphics.Bitmap; import android.graphics.Bitmap;
import android.graphics.BitmapShader; import android.graphics.BitmapShader;
Expand Down
@@ -1,4 +1,4 @@
package io.github.froger.instamaterial; package io.github.froger.instamaterial.ui.utils;


import android.app.Activity; import android.app.Activity;
import android.content.res.Resources; import android.content.res.Resources;
Expand Down
@@ -1,4 +1,4 @@
package io.github.froger.instamaterial; package io.github.froger.instamaterial.ui.utils;


import android.graphics.Bitmap; import android.graphics.Bitmap;
import android.graphics.BitmapShader; import android.graphics.BitmapShader;
Expand Down
@@ -1,4 +1,4 @@
package io.github.froger.instamaterial.view; package io.github.froger.instamaterial.ui.view;


import android.content.Context; import android.content.Context;
import android.view.LayoutInflater; import android.view.LayoutInflater;
Expand Down
@@ -1,4 +1,4 @@
package io.github.froger.instamaterial.view; package io.github.froger.instamaterial.ui.view;


import android.animation.Animator; import android.animation.Animator;
import android.animation.AnimatorListenerAdapter; import android.animation.AnimatorListenerAdapter;
Expand Down
@@ -1,4 +1,4 @@
package io.github.froger.instamaterial.view; package io.github.froger.instamaterial.ui.view;


import android.content.Context; import android.content.Context;
import android.graphics.Color; import android.graphics.Color;
Expand All @@ -9,8 +9,8 @@


import com.squareup.picasso.Picasso; import com.squareup.picasso.Picasso;


import io.github.froger.instamaterial.CircleTransformation; import io.github.froger.instamaterial.ui.utils.CircleTransformation;
import io.github.froger.instamaterial.GlobalMenuAdapter; import io.github.froger.instamaterial.ui.adapter.GlobalMenuAdapter;
import io.github.froger.instamaterial.R; import io.github.froger.instamaterial.R;


/** /**
Expand Down
@@ -1,4 +1,4 @@
package io.github.froger.instamaterial.view; package io.github.froger.instamaterial.ui.view;


import android.animation.Animator; import android.animation.Animator;
import android.animation.AnimatorListenerAdapter; import android.animation.AnimatorListenerAdapter;
Expand All @@ -8,7 +8,6 @@
import android.graphics.Canvas; import android.graphics.Canvas;
import android.graphics.Color; import android.graphics.Color;
import android.graphics.Paint; import android.graphics.Paint;
import android.graphics.drawable.ColorDrawable;
import android.os.Build; import android.os.Build;
import android.util.AttributeSet; import android.util.AttributeSet;
import android.view.View; import android.view.View;
Expand Down
@@ -1,4 +1,4 @@
package io.github.froger.instamaterial.view; package io.github.froger.instamaterial.ui.view;


import android.content.Context; import android.content.Context;
import android.util.AttributeSet; import android.util.AttributeSet;
Expand Down
@@ -1,4 +1,4 @@
package io.github.froger.instamaterial.view; package io.github.froger.instamaterial.ui.view;


import android.annotation.TargetApi; import android.annotation.TargetApi;
import android.content.Context; import android.content.Context;
Expand Down
@@ -1,4 +1,4 @@
package io.github.froger.instamaterial.view; package io.github.froger.instamaterial.ui.view;


import android.annotation.TargetApi; import android.annotation.TargetApi;
import android.content.Context; import android.content.Context;
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/activity_comments.xml
Expand Up @@ -55,7 +55,7 @@
android:textColor="#555555" android:textColor="#555555"
android:textSize="14sp" /> android:textSize="14sp" />


<io.github.froger.instamaterial.view.SendCommentButton <io.github.froger.instamaterial.ui.view.SendCommentButton
android:id="@+id/btnSendComment" android:id="@+id/btnSendComment"
android:layout_width="72dp" android:layout_width="72dp"
android:layout_height="match_parent" android:layout_height="match_parent"
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/activity_user_profile.xml
Expand Up @@ -4,7 +4,7 @@
android:layout_height="match_parent" android:layout_height="match_parent"
android:orientation="vertical"> android:orientation="vertical">


<io.github.froger.instamaterial.view.RevealBackgroundView <io.github.froger.instamaterial.ui.view.RevealBackgroundView
android:id="@+id/vRevealBackground" android:id="@+id/vRevealBackground"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" /> android:layout_height="match_parent" />
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/layout/item_feed.xml
Expand Up @@ -20,7 +20,7 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:src="@drawable/ic_feed_top" /> android:src="@drawable/ic_feed_top" />


<io.github.froger.instamaterial.view.SquaredFrameLayout <io.github.froger.instamaterial.ui.view.SquaredFrameLayout
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content"> android:layout_height="wrap_content">


Expand All @@ -43,7 +43,7 @@
android:scaleType="center" android:scaleType="center"
android:src="@drawable/ic_heart_outline_white" /> android:src="@drawable/ic_heart_outline_white" />


</io.github.froger.instamaterial.view.SquaredFrameLayout> </io.github.froger.instamaterial.ui.view.SquaredFrameLayout>


<ImageView <ImageView
android:id="@+id/ivFeedBottom" android:id="@+id/ivFeedBottom"
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/layout/item_photo.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<io.github.froger.instamaterial.view.SquaredFrameLayout xmlns:android="http://schemas.android.com/apk/res/android" <io.github.froger.instamaterial.ui.view.SquaredFrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/flRoot" android:id="@+id/flRoot"
android:layout_width="100dp" android:layout_width="100dp"
android:layout_height="100dp" android:layout_height="100dp"
Expand All @@ -11,4 +11,4 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:layout_margin="1dp" /> android:layout_margin="1dp" />
</io.github.froger.instamaterial.view.SquaredFrameLayout> </io.github.froger.instamaterial.ui.view.SquaredFrameLayout>

0 comments on commit 9c62d60

Please sign in to comment.