sharewithtitle/ShareWithTitle/src/main/java/in/sdqali/sharewithtitle/MainActivity.java
2013-07-20 13:07:19 -07:00

60 lines
1.8 KiB
Java

package in.sdqali.sharewithtitle;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.app.Activity;
import android.util.Log;
import android.view.Menu;
import android.widget.TextView;
import android.widget.Toast;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Intent intent = getIntent();
String action = intent.getAction();
TextView textView = (TextView) findViewById(R.id.greet_text);
textView.setText("");
if(action.equals(Intent.ACTION_SEND)) {
String sharedText = intent.getStringExtra(Intent.EXTRA_TEXT);
Log.d("Share With Title", "Received shared text: " + sharedText);
ShareableOutput shareableOutput = new ShareableOutput(sharedText);
textView.setText(shareableOutput.output());
if (shareableOutput.isValidUrl()) {
return;
}
showToast("Could not retrieve title. Not a valid url.");
} else if (action.equals(Intent.ACTION_MAIN)) {
Log.d("Share With Title", "Started from main");
textView.setText("Nothing to see here!");
}
}
private void showToast(String text) {
Context context = getApplicationContext();
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(context, text, duration);
toast.show();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}