Skip to content
Snippets Groups Projects
Select Git revision
  • 70a13bbd1a920feced19af1128ffa951ecfab8a8
  • github.com/Medidhi/Speech-to-code.git default
2 results

Abt.java

Blame
  • Abt.java 622 B
    package com.example.venkat.and;
    
    import android.content.Intent;
    import android.net.Uri;
    import android.support.v7.app.AppCompatActivity;
    import android.os.Bundle;
    import android.view.View;
    
    public class Abt extends AppCompatActivity {
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_abt);
        }
    
    
        public void open_git(View view)
        {
            Uri uri = Uri.parse("https://github.com/Medidhi/Speech-to-code");
            Intent intent = new Intent(Intent.ACTION_VIEW, uri);
            startActivity(intent);
        }
    }