Skip to content
Snippets Groups Projects
Commit 395d7cbd authored by venkat's avatar venkat
Browse files

remove feedback class

parent 70a13bbd
No related branches found
No related tags found
No related merge requests found
...@@ -21,7 +21,6 @@ ...@@ -21,7 +21,6 @@
<activity android:name=".Sample" /> <activity android:name=".Sample" />
<activity android:name=".history" /> <activity android:name=".history" />
<activity android:name=".Disp_code" /> <activity android:name=".Disp_code" />
<activity android:name=".Feedback" />
<activity android:name=".Share" /> <activity android:name=".Share" />
<activity android:name=".Help" /> <activity android:name=".Help" />
<activity android:name=".Abt"></activity> <activity android:name=".Abt"></activity>
......
package com.example.venkat.and;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
public class Feedback extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_feedback);
}
}
...@@ -68,11 +68,7 @@ public class MainActivity extends AppCompatActivity implements NavigationView.On ...@@ -68,11 +68,7 @@ public class MainActivity extends AppCompatActivity implements NavigationView.On
Intent i= new Intent(this,Sample.class); Intent i= new Intent(this,Sample.class);
startActivity(i); startActivity(i);
} }
public void feed(View view)
{
/* Intent i=new Intent(this,Feedback.class);
startActivity(i);
*/}
public void abt(View view) public void abt(View view)
{ {
Intent i=new Intent(this,Abt.class); Intent i=new Intent(this,Abt.class);
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
android:orientation="vertical" > android:orientation="vertical" >
<TextView <TextView
android:text="TextView" android:text="Oops Code not found !!!"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:id="@+id/cd" /> android:id="@+id/cd" />
......
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_feedback"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.venkat.and.Feedback">
</RelativeLayout>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment