mirror of
https://github.com/streetwriters/notesnook.git
synced 2026-09-03 04:31:46 +02:00
remove unused files
This commit is contained in:
@@ -1,21 +0,0 @@
|
||||
package com.streetwriters.notesnook;
|
||||
|
||||
import androidx.appcompat.app.AppCompatActivity;
|
||||
|
||||
import android.content.Intent;
|
||||
import android.os.Build;
|
||||
import android.os.Bundle;
|
||||
|
||||
public class IntentActivity extends AppCompatActivity {
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
|
||||
Intent intent = this.getIntent();
|
||||
intent.setClass(getBaseContext(), MainActivity.class);
|
||||
finishAffinity();
|
||||
startActivity(intent);
|
||||
|
||||
}
|
||||
}
|
||||
@@ -1,25 +0,0 @@
|
||||
package com.streetwriters.notesnook;
|
||||
|
||||
import android.content.Context;
|
||||
import android.graphics.Typeface;
|
||||
import android.util.AttributeSet;
|
||||
import androidx.appcompat.widget.AppCompatTextView;
|
||||
|
||||
|
||||
public class MyTextView extends AppCompatTextView {
|
||||
|
||||
public MyTextView(Context context, AttributeSet attrs, int defStyle) {
|
||||
super(context, attrs, defStyle);
|
||||
|
||||
}
|
||||
|
||||
public MyTextView(Context context, AttributeSet attrs) {
|
||||
super(context, attrs);
|
||||
}
|
||||
|
||||
public MyTextView(Context context) {
|
||||
super(context);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user