Pages

Showing posts with label 100. Show all posts
Showing posts with label 100. Show all posts

Wednesday, May 11, 2016

SMS Bomber Android Work 100

SMS Bomber Android (Work 100%)


Software ini cocok untuk anda yang suka iseng ..
tanpa basa basi ,,,,
Yuuk langsung aja di download :-)

Download Juga Anti-Sms Bomber                   

HAHAHAHA Start BOmbing!!!!
Read More..

Saturday, May 7, 2016

Cara Recovery Data di Android Work 100 Berhasil

Cara Recovery Data di Android Work 100 % Berhasil

Cara Recovery Data di Android Work 100 % Sukses - Untuk kamu yang sudah terlanjur menyimpan data penting di Android, namun tanpa disengaja hilang begitu entah itu karena tidak sengaja di format atau hp kamu bootloop atau karena penyebab lain dan kamu tidak bisa melakukan pengembalian data tersebut maka dari itu disini LingkaranAnda akan memberikan tutorial yang paling mudah tanpa harus melakukan format.


Nah, untuk mengembalikan data yang hilang dari sebuah perangkat Android setelah terformat, maka cara yang mudah adalah dengan menggunakan program untuk mengembalikan data. Program ini biasanya ada di komputer desktop dan banyak digunakan. Program seperti Get Data Back, Data Recovery, Pandora Recovery, Test Disk, Foremost, R-Studio, Recuva, dan masih banyak lagi. Program tersebut biasanya bisa diandalkan untuk mengembalikan data yang bahkan sudah terhapus dari Recycle Bin. Memang tidak semuanya, tetapi program tersebut cukup bisa diandalkan untuk mengembalikan data. Termasuk untuk mengembalikan data di MicroSD yang tertancap dalam perangkat Android Anda.


Untuk memulihkan data yang terformat pada memori internal sebenarnya masih bisa menggunakan program-program tersebut. Sayangnya, program tersebut kurang maksimal untuk pemulihan data di Android. Untuk memulihkan data atau Restore data di Android, sebaiknya gunakan program yang bernama Android Data Recovery. Program yang satu ini memiliki kelebihan dalam mengembalikan data yang terformat di Android. Tetapi penggunaan program ini pun sama seperti program lainnya, yakni harus diinstal di komputer desktop.


Hal yang Perlu Diperhatikan Sebelum Melakukan Restore Data
Untuk melakukan Restore data di Android menggunakan Android Data Recovery, sebaiknya Anda terlebih dahulu melakukan hal-hal berikut ini. Hal-hal berikut ini cukup penting untuk diperhatikan oleh Anda dalam langka proses Restore data dengan menggunakan Android Data Recovery. Apa saja hal-hal yang dimaksud? Berikut penjelasannya.
  • Proses pencarian data sebaiknya harus disegerakan setelah data tersebut terhapus atau terformat.
  • Untuk memaksimalkan pemulihan atau Restore, sebaiknya jangan menyimpan data baru. Proses penyimpanan data baru bisa saja menimpa data yang terhapus tersebut.
  • Jangan ada data dengan nama yang sama dengan nama data yang dihapus
  • Proses Restore data menggunakan Android Data Recovery umumnya bisa kembali normal. Bahkan banyak data yang kembali dengan utuh dari kerusakan sebelum terhapus tetapi kemungkinan potensi data tidak bisa diselamatkan pun masih terbuka.

Cara Restore Data dengan Android Data Recovery.

Setelah memperhatikan hal-hal tersebut, maka proses Restore data bisa Anda mulai dengan terlebih dahulu mengunduh program Android Data Recovery. Anda bisa mengunduh program dengan mengakses situs androiddata-Recovery.com. Unduhlah program yang gratis tetapi jika Anda memiliki dana lebih, tidak ada salahnya Anda mencoba menggunakanprogram Android Data Recovery versi berbayar. Setelah Anda selesai mengunduh, perhatikan langkah berikut ini :
  • Anda bisa langsung menginstal program Android Data Recovery di komputer.
  • Hubungkan perangkat Android yang Anda miliki dengan komputer yang sudah terinstal Android Data Recovery. Cara menghubungkannya, Anda cukup menggunakan kabel USB.
  • Setelah terhubung, bukalah program Android Data Recovery dan lakukan pemindaian atau Scaning pada perangkat Android
  • Setelah proses pemindaian selesai, selanjutnya lakukan Recovery pada tampilan bentuk data yang sudah terpindai. Anda bisa melakukan Recovery data dengan cara mengklik data tersebut.
  • Setelah proses klik Recovery, maka data hilang Anda kini sudah kembali. Data tersebut kemungkinan besar cenderung tidak kehilangan kualitasnya.
  • Setelah dilakukan Recovery, maka data yang sudah Restore, sebaiknya disimpan pada folder tertentu di perangkat Android milik ..

Demikian Tips kali ini Cara Recovery Data di Android Work 100 % Berhasil, semoga dapat bermanfaat.
Read More..

Friday, April 29, 2016

Android Selection Controls

Android offers selection Controls like


1. List View.

2. Spinner

3. Check box

4. Radio Button

The List View:


ListView represents a list of items that can be selected. It is similar to the ListBox in C#.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android_orientation="vertical"
android_layout_width="fill_parent"
android_layout_height="fill_parent"
>
<TextView
android_layout_width="fill_parent"
android_layout_height="wrap_content"
android_id="@+id/txt"
/>
<ListView
android_layout_width="wrap_content"
android_layout_height="wrap_content"
android_id="@+id/List"
/>
</LinearLayout>



To populate the list and handle the ItemClick event we can do it like this :
final String [] items=new String[]{"Item1","Item2","Item3","Item4"};
ArrayAdapter ad=new ArrayAdapter(this,android.R.layout.simple_list_item_1,items);
list=(ListView)findViewById(R.id.List);
list.setAdapter(ad);
list.setOnItemClickListener(new OnItemClickListener()
{

public void onItemClick(AdapterView arg0, View arg1, int arg2,
long arg3) {
// TODO Auto-generated method stub
TextView txt=(TextView)findViewById(R.id.txt);
txt.setText(list.getItemAtPosition(arg2).toString());


}

}
);

The above code displays the selected item text in the textview:
The parameters of the OnItemClick method are:


Arg0:the listview, notice that it is of type AdapterView.

Arg1: the view that represents the selected item, in this example it will be a TextView

Arg2: the position of the selected item.

Arg3: the id of the selected item.

When creating the adapter you can specify the layout of the list by using simple_list_item_1 to display a simple list or by using


simple_list_item_single_choice to display radio buttons for single selection

Or by using simple_list_item_multiple_choice to display check boxes for multiple selection
You can set the choice mode of the list by using setchoicemode() method:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//setContentView(R.layout.main);
final String [] items=new String[]{"Item1","Item2","Item3","Item4"};
ArrayAdapter ad=new ArrayAdapter(this,android.R.layout.simple_list_item_multiple_choice,items);
setListAdapter(ad);
ListView list=getListView();
list.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);

}

Now suppose you want to change the text of the an item when it is clicked, you can do it like this:
list.setOnItemClickListener(new OnItemClickListener()
{

public void onItemClick(AdapterView arg0, View arg1, int arg2,
long arg3) {
// TODO Auto-generated method stub
TextView txt=(TextView)findViewById(R.id.txt);
items[arg2]="changed";
list.setAdapter(new ArrayAdapter(ListControls.this,android.R.layout.simple_list_item_1,items));

}

}
);

Or a more neat way:
list.setOnItemClickListener(new OnItemClickListener()
{

public void onItemClick(AdapterView arg0, View arg1, int arg2,
long arg3) {
// TODO Auto-generated method stub
TextView temp=(TextView)arg1;
temp.setText("changed 2");
}

}
);

See that you actually change the value of the string array item at the selected position then bind the listview with the adapter again. Or you capture the View object and do what you want.



If the activity will contain just one listview you can create an activity that extends list view. In this case you don’t have to specify a layout as a listview will fill the screen.
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
final String [] items=new String[]{"Item1","Item2","Item3","Item4"};
ArrayAdapter ad=new ArrayAdapter(this,android.R.layout.simple_list_item_1,items);
setListAdapter(ad);


If you want to reference or customize this listview then you can define it in the layouts xml fine by assigning it the id “android:id/list” so that the activity knows which listView is the main list for the activity .

This example shows a listview and a textview
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android_orientation="vertical"
android_layout_width="fill_parent"
android_layout_height="fill_parent"
>
<TextView
android_layout_width="fill_parent"
android_layout_height="wrap_content"
android_id="@+id/txt"
android_text="List View Demo"
/>

<ListView
android_layout_width="fill_parent"
android_layout_height="wrap_content"
android_id="@android:id/list"
/>
</LinearLayout>



Now if you want to customize the ui of each row of the listview you define two layouts files: the first has the layout of the activity and the other has layout of each row in the listview
Read More..

Saturday, March 26, 2016

Crysis 2 Full PC CRACK PATCH ONLY Working 100



How to use:
Cara pemakaian:

You must download Crysis 2 game first. Click here. Torrent file.
Anda harus mendownload game Crysis 2 dulu. Klik disini. File Torrent.

1. Download Crysis 2 Crack files.zip. Extract it.
Download Crysis 2 Crack files.zip. Lalu ekstak file tadi.

2. Move folder with named bin32 and patch to your Crysis 2 folder, usually C:Program FilesElectonics ArtCrytekCrysis 2 , and overwrite all exsisting file.
Pindahkan folder bernama bin32 dan patch ke folder Crysis 2 anda, biasanya C:Program FilesElectonics ArtCrytekCrysis 2 , dan timpa/overwrite file yang sudah ada.

3. Run the Crysis 2.exe in bin32 folder. And enjoy your full Crysis 2 game!
Jalankan Crysis 2.exe di folder bin32. Dan nikmati game Crysis 2 full anda!

 Download here:

Read More..

Friday, March 25, 2016

IDM Internet Download Manager FREE FULL Patch Crack Keygen Working 100 !

Siapa yang tak kenal IDM? Downloader tercepat saat ini memang sangat dibutuhkan bagi yang suka download file di internet.



Salah satu kegunaan mendasar bagi pecinta youtube adalah dimudahkannya untuk mendownload video di youtube. Jika koneksi internet bagus, kecepatan download bisa mencapai 290 kBps (kilobyte/detik)! Wow, cepat sekali!


Memang sangat berguna, namun karena software ini
tidak gratis, tidak semua orang dapat memilikinya secara legal. Tujuan Saya sendiri memposting patch
Read More..

Thursday, March 10, 2016

Introduction to UI in Android

Layouts in android is constructed from two objects: View and ViewGroup.


The View class is the base class for many widgets sub classes such as TextView and Button classes.

The ViewGroup is a view that conatains other views. The Viewgroup class is the base class for many layouts in android.

The UI Hierarchy is described in this picture from the android online sdk documentation



As you can see the root node is a view group which can be any layout that contains child views or even other viewgroups.


The root node appears on the activity by calling setcontentview ( method). Which in turn draws its child nodes and each child node draws its child nodes

In the following posts we are going to explore the categories of android widgets which are:
 
1. Text Controls


2. Button controls

3. List controls

4. Grid controls

5. Date and time controls

6. Menus

7. Dialogs

8. Adapters
Read More..