Skip to content

Commit ff93b65

Browse files
author
shrikanth7698
committed
Migration done :)
1 parent 9bacd67 commit ff93b65

28 files changed

+880
-331
lines changed

.idea/caches/build_file_checksums.ser

0 Bytes
Binary file not shown.

.idea/misc.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/src/main/AndroidManifest.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@
99
android:roundIcon="@mipmap/ic_launcher_round"
1010
android:supportsRtl="true"
1111
android:theme="@style/AppTheme">
12-
<activity android:name=".MainActivity">
12+
<activity android:name=".Main2Activity">
1313
<intent-filter>
1414
<action android:name="android.intent.action.MAIN" />
1515

1616
<category android:name="android.intent.category.LAUNCHER" />
1717
</intent-filter>
18+
1819
</activity>
1920
</application>
2021

app/src/main/java/com/shrikanthravi/customnavigationdrawer/LockHorizontalScrollView.java

-30
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
package com.shrikanthravi.customnavigationdrawer;
2+
3+
import android.support.v7.app.AppCompatActivity;
4+
import android.os.Bundle;
5+
6+
public class Main2Activity extends AppCompatActivity {
7+
8+
@Override
9+
protected void onCreate(Bundle savedInstanceState) {
10+
super.onCreate(savedInstanceState);
11+
setContentView(R.layout.activity_main2);
12+
getSupportActionBar().hide();
13+
}
14+
}

app/src/main/java/com/shrikanthravi/customnavigationdrawer/MainActivity.java

-185
This file was deleted.

app/src/main/java/com/shrikanthravi/customnavigationdrawer/MenuAdapter.java

-65
This file was deleted.

app/src/main/java/com/shrikanthravi/customnavigationdrawer/MyRecyclerItemClickListener.java

-47
This file was deleted.
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3+
xmlns:app="http://schemas.android.com/apk/res-auto"
4+
xmlns:tools="http://schemas.android.com/tools"
5+
android:layout_width="match_parent"
6+
android:layout_height="match_parent"
7+
tools:context=".Main2Activity">
8+
<com.shrikanthravi.customnavigationdrawer2.widget.SNavigationDrawer
9+
android:layout_width="match_parent"
10+
android:layout_height="match_parent">
11+
<FrameLayout
12+
android:id="@+id/frameLayout"
13+
android:layout_width="match_parent"
14+
android:layout_height="match_parent"/>
15+
16+
</com.shrikanthravi.customnavigationdrawer2.widget.SNavigationDrawer>
17+
</RelativeLayout>

0 commit comments

Comments
 (0)