Monday, February 5, 2018
Simple Life Hacks and Others Mo
$*#@%$ ca-app-pub-6198956608966135/7497759334
Simple Daily Life Hacks
Adding a teaspoon of of baking soda when you boil eggs and the shell will come off easily.
Pinching the end of a banana is a far easier way to open it.
How to find the hole in your tire:
If you are losing air in your tire, but can't find a nail/screw/hole: fill your tire full of air, take off your tire and get some dish soap and water. Bubbles will develop where ever there is a leak. If the hole is in the middle of the tire (like seen here) you can get it repaired for a few dollars. If it's on the sidewalls, you're not so lucky.
Use a bowl lightly coated with oil to swat at mosquito with
Perfectly cut cherry tomatoes all at once:
Pour a half a cup of baking soda and a cup of vinegar into a clogged drain. Once it stops foaming rinse down the sink and your drains will be clear. A cheap and environmentally friendly way to unclog a sink
Simple Daily Life Hacks
Adding a teaspoon of of baking soda when you boil eggs and the shell will come off easily.
Pinching the end of a banana is a far easier way to open it.
How to find the hole in your tire:
If you are losing air in your tire, but can't find a nail/screw/hole: fill your tire full of air, take off your tire and get some dish soap and water. Bubbles will develop where ever there is a leak. If the hole is in the middle of the tire (like seen here) you can get it repaired for a few dollars. If it's on the sidewalls, you're not so lucky.
Use a bowl lightly coated with oil to swat at mosquito with
Perfectly cut cherry tomatoes all at once:
Pour a half a cup of baking soda and a cup of vinegar into a clogged drain. Once it stops foaming rinse down the sink and your drains will be clear. A cheap and environmentally friendly way to unclog a sink
Best daily Life Hacks and Others Which
$*#@%$ com.marina.funnygif*Stickers*For*Whatsapp*GIF*Stickers*And*Smileys*For*Whatsapp*On*Playstore*NO*
There are life-savers that we've put together to simplify your world. Tips/tricks/hacks that are so easy and simple that you will change your life forever. You've longed for these simple solutions and you know you need them bad because they are just miracles in disguise
If you type in any flight number into Google you can see exactly where the plane is.
11 Stress Relieving Foods -Bananas -Pasta -Almonds -Grapes -Green Tea -Oatmeal -Chocolate -Water melon -Orange Juice -Cornflakes -Tuna.
.
Turn the shower to cold before you get out. It closes your pores and makes you less likely to get acne.
Putting Vodka on your face reduces the chances of acne breakouts by tightening your pores.
Put old newspaper at the bottom of your trash bin, it will absorb any food juices and make for a cleaner disposal.
There are life-savers that we've put together to simplify your world. Tips/tricks/hacks that are so easy and simple that you will change your life forever. You've longed for these simple solutions and you know you need them bad because they are just miracles in disguise
If you type in any flight number into Google you can see exactly where the plane is.
11 Stress Relieving Foods -Bananas -Pasta -Almonds -Grapes -Green Tea -Oatmeal -Chocolate -Water melon -Orange Juice -Cornflakes -Tuna.
.
Turn the shower to cold before you get out. It closes your pores and makes you less likely to get acne.
Putting Vodka on your face reduces the chances of acne breakouts by tightening your pores.
Put old newspaper at the bottom of your trash bin, it will absorb any food juices and make for a cleaner disposal.
Android Stickers New Which App
$*#@%$ com.droidz.thoughts*Thoughts*For*Success*Motivational*Thoughts*for*Success*App**On*Playstore*NO*
Edit Texts In Android
A EditText is an overlay over TextView that configures itself to be editable. It is the predefined subclass of TextView that includes rich editing capabilities.
A user interface element for entering and modifying text. When you define an edit text widget, you must specify the
A EditText is an overlay over TextView that configures itself to be editable. It is the predefined subclass of TextView that includes rich editing capabilities.
A user interface element for entering and modifying text. When you define an edit text widget, you must specify the
TextView_inputType attribute. For example, for plain text input set inputType to "text":<EditText
android:id="@+id/plain_text_input"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:inputType="text"/>
Android Stickers and other new Mo
$*#@%$ ca-app-pub-6084316122566523/1287182667
What is Android Text View
A user interface element that displays text to the user.
A user interface element that displays text to the user.
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/text_view_id"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/hello" />
</LinearLayout>
TextView textView = (TextView) findViewById(R.id.textView);
textView.setText("AbhiAndroid"); //set text for text view
Making Phone Call In Android
We can make a call In Android.
We are able to make a phone call in android via intent. You need to write only three lines of code to make a phone call.
We are able to make a phone call in android via intent. You need to write only three lines of code to make a phone call.
- Intent callIntent = new Intent(Intent.ACTION_CALL);
- callIntent.setData(Uri.parse("tel:"+8802177690));//change the number
- startActivity(callIntent);
Using BlueTooth in Android
Bluetooth is a way to send or receive data between two different devices. Android platform includes support for the Bluetooth framework that allows a device to wirelessly exchange data with other Bluetooth devices.
Android provides Bluetooth API to perform these different operations.
- Scan for other Bluetooth devices
- Get a list of paired devices
- Connect to other devices through service discovery
Android provides BluetoothAdapter class to communicate with Bluetooth. Create an object of this calling by calling the static method getDefaultAdapter(). Its syntax is given below.
private BluetoothAdapter BA;
BA = BluetoothAdapter.getDefaultAdapter();
In order to enable the Bluetooth of your device, call the intent with the following Bluetooth constant ACTION_REQUEST_ENABLE. Its syntax is.
Intent turnOn = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
startActivityForResult(turnOn, 0);
Apart from this constant, there are other constants provided the API , that supports different tasks. They are listed below
Android Image Slider Example
In this tutorial, we will create an android image slider using android view pager and CircleIndicator library.
Android image slider slides one entire screen to another screen. Image slider is created by ViewPager which is provided by support library. To implement image slider, you need to inherit ViewPager class which extends PagerAdapter
main.xml
Android image slider slides one entire screen to another screen. Image slider is created by ViewPager which is provided by support library. To implement image slider, you need to inherit ViewPager class which extends PagerAdapter
main.xml
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:paddingBottom="@dimen/activity_vertical_margin"
- android:paddingLeft="@dimen/activity_horizontal_margin"
- android:paddingRight="@dimen/activity_horizontal_margin"
- android:paddingTop="@dimen/activity_vertical_margin"
- tools:context="com.example.test.imageslider.MainActivity">
- <android.support.v4.view.ViewPager
- android:id="@+id/viewPage"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent" />
- </RelativeLayout>
MainActivity
- public class MainActivity extends AppCompatActivity {
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
- ViewPager mViewPager = (ViewPager) findViewById(R.id.viewPage);
- ImageAdapter adapterView = new ImageAdapter(this);
- mViewPager.setAdapter(adapterView);
- }
- }
ImageAdapter.java
- public class ImageAdapter extends PagerAdapter{
- Context mContext;
- ImageAdapter(Context context) {
- this.mContext = context;
- }
- @Override
- public boolean isViewFromObject(View view, Object object) {
- return view == ((ImageView) object);
- }
- private int[] sliderImageId = new int[]{
- R.drawable.image1, R.drawable.image2, R.drawable.image3,R.drawable.image4, R.drawable.image5,
- };
- @Override
- public Object instantiateItem(ViewGroup container, int position) {
- ImageView imageView = new ImageView(mContext);
- imageView.setScaleType(ImageView.ScaleType.CENTER_CROP);
- imageView.setImageResource(sliderImageId[position]);
- ((ViewPager) container).addView(imageView, 0);
- return imageView;
- }
- @Override
- public void destroyItem(ViewGroup container, int position, Object object) {
- ((ViewPager) container).removeView((ImageView) object);
- }
- @Override
- public int getCount() {
- return sliderImageId.length;
- }
- }
Android TextureView Example
A TextureView can be used to display a content stream. Such a content stream can for instance be a video or an OpenGL scene. The content stream can come from the application's process as well as a remote process.
If you want to display a live video stream or any content stream such as video or an OpenGL scene, you can use TextureView provided by android in order to do that.
In order to use TextureView, all you need to do is get its SurfaceTexture.The SurfaceTexture can then be used to render content. In order to do this, you just need to do instantiate an object of this class and implement SurfaceTextureListener interface. Its syntax is given below
private TextureView myTexture;
public class MainActivity extends Activity implements SurfaceTextureListener{
protected void onCreate(Bundle savedInstanceState) {
myTexture = new TextureView(this);
myTexture.setSurfaceTextureListener(this);
setContentView(myTexture);
}
}
@Override
public void onSurfaceTextureAvailable(SurfaceTexture arg0, int arg1, int arg2) {
}
@Override
public boolean onSurfaceTextureDestroyed(SurfaceTexture arg0) {
}
@Override
public void onSurfaceTextureSizeChanged(SurfaceTexture arg0, int arg1,int arg2) {
}
@Override
public void onSurfaceTextureUpdated(SurfaceTexture arg0) {
}
Sending SMS In Android
In Android, We can use SmsManager API to send SMS's. In this tutorial, we shows you two basic examples to send SMS message.
SmsManager smsManager = SmsManager.getDefault();
smsManager.sendTextMessage("phoneNo", null, "sms message", null, null);
Intent sendIntent = new Intent(Intent.ACTION_VIEW);
sendIntent.putExtra("sms_body", "default content");
sendIntent.setType("vnd.android-dir/mms-sms");
startActivity(sendIntent);
Subscribe to:
Posts (Atom)










