This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| radioGroup.setOnCheckedChangeListener(new OnCheckedChangeListener() { | |
| public void onCheckedChanged(RadioGroup group, int checkedId) { | |
| } | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 = |
NewerOlder