To set the width of a tab in TabHost
tabHost.getTabWidget().getChildAt(0).setLayoutParams(new LinearLayout.LayoutParams(80,50));
Sending Email from an Android Device
Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
String[] recipients = new String[]{"mschumacher@f1.com", "rbarichello@f1.com"};
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, recipients);
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Test");
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, "This is email's message");
emailIntent.setType("text/plain");
startActivity(Intent.createChooser(emailIntent, "Choose Mail Client..."));
No comments:
Post a Comment