Commit d6617944 authored by PANKAJ KUMAR's avatar PANKAJ KUMAR

Sending File is working. Tested by uploading to Google drive and emailing.....

Sending File is working. Tested by uploading to Google drive and emailing.. testing on Whatsapp is pending.
parent d6e5f365
...@@ -27,16 +27,7 @@ ...@@ -27,16 +27,7 @@
<activity <activity
android:name=".ReminderAddActivity" android:name=".ReminderAddActivity"
android:label="@string/title_activity_add_reminder"> android:label="@string/title_activity_add_reminder">
<intent-filter>
<action
android:name="android.intent.action.PICK"/>
<category
android:name="android.intent.category.DEFAULT"/>
<category
android:name="android.intent.category.OPENABLE"/>
<data android:mimeType="text/plain"/>
<data android:mimeType="image/*"/>
</intent-filter>
</activity> </activity>
<activity <activity
......
...@@ -36,7 +36,6 @@ public class LicencesActivity extends AppCompatActivity { ...@@ -36,7 +36,6 @@ public class LicencesActivity extends AppCompatActivity {
// Setup Toolbar // Setup Toolbar
mToolbar = (Toolbar) findViewById(R.id.toolbar); mToolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(mToolbar); setSupportActionBar(mToolbar);
getSupportActionBar().setTitle(R.string.title_activity_licenses);
getSupportActionBar().setDisplayHomeAsUpEnabled(true); getSupportActionBar().setDisplayHomeAsUpEnabled(true);
getSupportActionBar().setHomeButtonEnabled(true); getSupportActionBar().setHomeButtonEnabled(true);
......
...@@ -241,19 +241,20 @@ public class MainActivity extends AppCompatActivity { ...@@ -241,19 +241,20 @@ public class MainActivity extends AppCompatActivity {
} }
// Setup menu // Setup menu
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
// start licenses activity
case R.id.action_licenses:
Intent intent = new Intent(this, LicencesActivity.class);
startActivity(intent);
return true;
default: // @Override
return super.onOptionsItemSelected(item); // public boolean onOptionsItemSelected(MenuItem item) {
} // switch (item.getItemId()) {
} // // start licenses activity
// case R.id.action_licenses:
// Intent intent = new Intent(this, LicencesActivity.class);
// startActivity(intent);
// return true;
//
// default:
// return super.onOptionsItemSelected(item);
// }
// }
// Adapter class for recycler view // Adapter class for recycler view
......
...@@ -48,6 +48,8 @@ import androidx.core.content.FileProvider; ...@@ -48,6 +48,8 @@ import androidx.core.content.FileProvider;
import com.google.android.material.floatingactionbutton.FloatingActionButton; import com.google.android.material.floatingactionbutton.FloatingActionButton;
import java.io.File; import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream; import java.io.FileOutputStream;
import java.io.IOException; import java.io.IOException;
import java.io.OutputStreamWriter; import java.io.OutputStreamWriter;
...@@ -457,10 +459,9 @@ public class ReminderAddActivity extends AppCompatActivity { ...@@ -457,10 +459,9 @@ public class ReminderAddActivity extends AppCompatActivity {
Context context = this; Context context = this;
//First write the data to a temporary file //First write the data to a temporary file
String filename = "myfile.txt"; String filename = Utility.FILE_NAME_PREFIX + "." + Utility.FILE_EXTENSION; //TODO Consecutive filenames should be unique
String fileContents = "Hello world!"; String fileContents = "First Send Reminder Test!!"; //TODO Write reminder data to file
FileOutputStream outputStream; FileOutputStream outputStream;
try { try {
outputStream = openFileOutput(filename, Context.MODE_PRIVATE); outputStream = openFileOutput(filename, Context.MODE_PRIVATE);
outputStream.write(fileContents.getBytes()); outputStream.write(fileContents.getBytes());
...@@ -469,6 +470,18 @@ public class ReminderAddActivity extends AppCompatActivity { ...@@ -469,6 +470,18 @@ public class ReminderAddActivity extends AppCompatActivity {
e.printStackTrace(); e.printStackTrace();
} }
// //Check the if the file was written correctly.. Should be printed on console
// FileInputStream fi = null;
// try {
// fi = context.openFileInput(filename);
// int i;
// StringBuilder sb = new StringBuilder();
// while ((i=fi.read()) != -1)
// sb.append((char)i);
// System.out.println(sb.toString());
// } catch (Exception e) {
// e.printStackTrace();
// }
//Pick the written file and send //Pick the written file and send
File filePath = context.getFilesDir(); File filePath = context.getFilesDir();
...@@ -477,15 +490,19 @@ public class ReminderAddActivity extends AppCompatActivity { ...@@ -477,15 +490,19 @@ public class ReminderAddActivity extends AppCompatActivity {
"com.blanyal.remindme.fileprovider", fileToSend); "com.blanyal.remindme.fileprovider", fileToSend);
Intent share = new Intent(); Intent share = new Intent();
share.setAction(Intent.ACTION_SEND); share.setAction(Intent.ACTION_SEND);
share.setDataAndType( fileUri, getContentResolver().getType(fileUri)); share.putExtra(Intent.EXTRA_STREAM, fileUri);
share.setType("text/"+Utility.FILE_EXTENSION);
//share.setDataAndType( fileUri, getContentResolver().getType(fileUri));
share.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION); share.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
share.addFlags(Intent.FLAG_GRANT_WRITE_URI_PERMISSION); //share.addFlags(Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
//share.setType("text/ovpn");
//share.putExtra(MediaStore.) //share.putExtra(MediaStore.)
Intent shareIntent = Intent.createChooser(share, null);
Intent shareIntent = Intent.createChooser(share, null);
startActivity(shareIntent); startActivity(shareIntent);
//TODO delete the file once job is done
default: default:
return super.onOptionsItemSelected(item); return super.onOptionsItemSelected(item);
} }
......
package com.blanyal.remindme;
public class Utility {
public static final String FILE_NAME_PREFIX = "Talking_Reminder";
public static final String FILE_EXTENSION = "tprd";
}
...@@ -27,12 +27,6 @@ ...@@ -27,12 +27,6 @@
android:layout_below="@id/toolbar" android:layout_below="@id/toolbar"
android:layout_height="fill_parent"> android:layout_height="fill_parent">
<TextView
android:id="@+id/licenses_text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:text="@string/licenses"/>
</ScrollView> </ScrollView>
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
tools:context="com.blanyal.remindme.MainActivity"> tools:context="com.blanyal.remindme.MainActivity">
<item android:id="@+id/action_licenses" <!-- <item android:id="@+id/action_licenses"-->
android:title="@string/title_activity_licenses" <!-- android:title="@string/title_activity_licenses"-->
app:showAsAction="never"/> <!-- app:showAsAction="never"/>-->
</menu> </menu>
\ No newline at end of file
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment