Skip to content

Commit

Permalink
file added
Browse files Browse the repository at this point in the history
  • Loading branch information
Rahul255 committed Jul 6, 2019
1 parent 9ff6fc0 commit 18a08ff
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

public class MainActivity extends AppCompatActivity {
private Button newAccount;
private Button newLogin;

@Override
protected void onCreate(Bundle savedInstanceState) {
Expand All @@ -22,6 +23,14 @@ public void onClick(View view) {
}
});

newLogin=findViewById(R.id.login);
newLogin.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {

}
});


}
public void openAccount(){
Expand Down
2 changes: 1 addition & 1 deletion Registration/app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
android:layout_weight="1"
android:text="Password" />
<EditText
android:id="@+id/editText"
android:id="@+id/editText_password"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
Expand Down

0 comments on commit 18a08ff

Please sign in to comment.