Skip to content

Instantly share code, notes, and snippets.

View aztack's full-sized avatar
🎯
Focusing

Wang Weihua aztack

🎯
Focusing
View GitHub Profile
@aztack
aztack / ChangeListener.java
Created January 22, 2012 04:12 — forked from khannedy/ChangeListener.java
RadioButton di Android
radioGroup.setOnCheckedChangeListener(new OnCheckedChangeListener() {
public void onCheckedChanged(RadioGroup group, int checkedId) {
}
});
@aztack
aztack / MyCustomListView.java
Created January 22, 2012 04:01 — forked from neufuture/MyCustomListView.java
Android ListView without ListActivity
import android.app.Activity;
import android.os.Bundle;
import android.widget.ListView;
import android.widget.SimpleAdapter;
import java.util.ArrayList;
import java.util.HashMap;
public class MyCustomListView extends Activity{
static final ArrayList<HashMap<String,String>> myList =