Mingi
Lurker
String[] _InitialSetup_Menu = new String[]
{
"AA", "BB", "CC", "DD", "FF", "GG", "HH"
};
_InitialSetup_List = (ListView) _Main_List.findViewById(R.id._Main_ListView);
ArrayAdapter<String> __InitialSetup_Adapter = new ArrayAdapter<String>(this.getActivity(), R.layout.custom_menulist, R.id._Custom_MenuList_Text, _InitialSetup_Menu);
_InitialSetup_List.setAdapter(__InitialSetup_Adapter);
If there is such a ListView, is there any way to make the fourth DD visible only when a specific event occurs, or change the color?
What I'm about to do now
When there is a certain key event
For example, if you hold down the Menu key and press the UP key three times, the DD menu opens.
I want to say, what should I do?
{
"AA", "BB", "CC", "DD", "FF", "GG", "HH"
};
_InitialSetup_List = (ListView) _Main_List.findViewById(R.id._Main_ListView);
ArrayAdapter<String> __InitialSetup_Adapter = new ArrayAdapter<String>(this.getActivity(), R.layout.custom_menulist, R.id._Custom_MenuList_Text, _InitialSetup_Menu);
_InitialSetup_List.setAdapter(__InitialSetup_Adapter);
If there is such a ListView, is there any way to make the fourth DD visible only when a specific event occurs, or change the color?
What I'm about to do now
When there is a certain key event
For example, if you hold down the Menu key and press the UP key three times, the DD menu opens.
I want to say, what should I do?