Share in social media or email or message in android


Here is the simple tutorials for all android application developer who want to
made share your data on social media, or message to your friend even you can save
in memo.

You can also share in social app like, viber, whatsapp, chaton, facebook, twitter, google plus.

Here is the tips or code:

first you have to create share menu.
res/menu/main.xml
-----------------
<menu xmlns:android="http://schemas.android.com/apk/res/android" >

     <item
        android:id="@+id/refresh"
        android:alphabeticShortcut="r"
        android:icon="@drawable/ic_action_refresh"
        android:orderInCategory="100"
        android:showAsAction="always"/>
    <item
        android:id="@+id/share"
        android:actionProviderClass="android.widget.ShareActionProvider"
        android:icon="@drawable/ic_action_share"
        android:orderInCategory="1"
        android:showAsAction="collapseActionView"
        android:title="@string/share"/>
 

</menu>

-----------
Information that you want to share
res/layout/share.xml
------------
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
    <EditText
        android:id="@+id/editText1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:ems="10"
        android:inputType="textPersonName" >

        <requestFocus />
    </EditText>

    <EditText
        android:id="@+id/editText2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/editText1"
        android:layout_centerHorizontal="true"
        android:ems="10"
        android:inputType="number" />

    <EditText
        android:id="@+id/editText3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/editText2"
        android:layout_centerHorizontal="true"
        android:ems="10"
        android:inputType="textEmailAddress" />

</RelativeLayout>

----------------------
Main Source Code:
src/MainActivity.java
----------------
public class MainActivity extends Activity {

private String shareBody;
String name, phone, email;
EditText et_name, et_phone, et_email;
private Menu optionsMenu;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.share);
setupviews();
}

private void setupviews() {
// TODO Auto-generated method stub
et_name = (EditText) findViewById(R.id.editText1);
et_phone = (EditText) findViewById(R.id.editText2);
et_email = (EditText) findViewById(R.id.editText3);
}
@TargetApi(Build.VERSION_CODES.HONEYCOMB)
@SuppressLint("NewApi")
public void setRefreshActionButtonState(final boolean refreshing) {
if (optionsMenu != null) {
final MenuItem refreshItem = optionsMenu.findItem(R.id.refresh);
if (refreshItem != null) {
if (refreshing) {
refreshItem
.setActionView(R.layout.actionbar_indeterminate_progress);
} else {
refreshItem.setActionView(null);
}
}
}
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
this.optionsMenu = menu;
getMenuInflater().inflate(R.menu.main, menu);
return true;
}

// handle click events for action bar items
@SuppressLint("NewApi")
@Override
public boolean onOptionsItemSelected(MenuItem item) {

switch (item.getItemId()) {

case R.id.share:
// showToast("Share was clicked.");

name = et_name.getText().toString();
phone = et_phone.getText().toString();
email = et_email.getText().toString();

shareBody = "\"" + "Sharing Messsage: " + "\"    " + "Name:-"
+ "-->>" + name + ", " + "Phone:- " + "-->>" + phone + ", "
+ "Email:- " + "-->>" + email;
ShareActionProvider myShareActionProvider = (ShareActionProvider) item
.getActionProvider();

Intent myIntent = new Intent();
myIntent.setAction(Intent.ACTION_SEND);
myIntent.putExtra(Intent.EXTRA_TEXT, shareBody);
myIntent.setType("text/plain");

myShareActionProvider.setShareIntent(myIntent);

return true;

default:
return super.onOptionsItemSelected(item);
}
}
}


-----------------
Output Looks Like:

Happy Coding   :)

Android App publish in app store free and paid


Are you ready to publish your android app. Here some paid and free option and Operating system-native platforms or Third-party platforms.


Operating system-native platforms

-----------------------------------------------------
Established October 22, 2008
Status : Live
Owner : Google
Available apps : 1,000,000(Jul 24, 2013)
Download count: 50 billion 
Installed base : 500 million(June 2012)
Allows individual developers to publish : Yes 
Developer's cut per sale:  70%
Developer fees:  US$25
Development tool(s):  Android SDK, Android Studio
Free of charge IDE?:  Yes


Established September 14, 2009
Status : Live 
Owner : Samsung, Handmark
Available apps : 13,000 (March 24, 2011)
Download count: 100 million Bada Apps (March 2011)
Installed base : 20 million Samsung Smart TV Apps ,5 million (March 2011)  Multiple
Allows individual developers to publish : Yes 
Developer's cut per sale:  70% 
Developer fees:  Free
Development tool(s):  Android SDK,Samsung Mobile SDK, Samsung Smart TV SDK,bada SDK (bada is discontinued) 
Free of charge IDE?:  Yes

Third-party platforms
-----------------------------


Eclipse - Failed to create the java virtual machine

Mostly eclipse user developer stick this error sometimes or many times during on his developing careers. So lets find out some solution, how to fix "failed to create the java virtual machine".

I have found some fine solution in stackoverflow and borrowing some answers here.

Solutions 1
------------
1. Open the eclipse.ini file from your eclipse folder,see the picture below.
eclipse.ini
2. Open eclipse.ini in Notepad or any other text-editor application, Find the line -Xmx256m (or -Xmx1024m). Now change the default value 256m (or 1024m) to 512m. You also need to give the exact java installed version (1.6 or 1.7 or other).
max size
Like This:
-Xmx512m
-Dosgi.requiredJavaVersion=1.6
OR
-Xmx512m
-Dosgi.requiredJavaVersion=1.7
Then it works .

Solutions 2.
-----------

if solutions 1 is not working then try this:
Try removing the -vm P:\Programs\jdk1.6\bin lines.

Also, a general recommendation: set -Dosgi.requiredJavaVersion=1.6, not 1.5.

Solution 3
--------------
There are two place in eclipse.ini that includes
--launcher.XXMaxPermSize
256m
make it
--launcher.XXMaxPermSize
128m

Solution 4.
-------------------
if all the above solutions is not working then, try this:

Try to add



-vm D:\Java\jdk1.6.0_29\bin\javaw.exe
FYI: Refer sunblog
Source:http://stackoverflow.com/questions/7302604/eclipse-error-failed-to-create-the-java-virtual-machine
HappY CodinG