-
Recent Posts
Popular Posts List
-
Linkify text li...
0
56
-
Scroll to certa...
0
44
-
Get Resource ID...
0
42
-
Foreach loop cy...
0
40
-
Convert Drawabl...
0
38
-
Transparent Bac...
0
35
-
How quickly res...
0
35
-
Android Studio ...
0
31
-
Create bitmap a...
0
30
-
Spinner ComboBo...
0
29
-
Timer task Time...
0
29
-
Timer simple Ti...
0
28
-
Get Assets fold...
0
27
-
Turn screen ON ...
0
27
-
android.app.App...
0
26
-
Convert Activit...
0
26
-
Open url with b...
0
26
-
PHP how to incl...
0
23
-
Progressbar cha...
0
22
-
How set focus o...
0
22
-
Linkify text li...
Views
- Timer simple TimerTask Java Android example - 136,403 views
- Linkify text link url in TextView text Android example - 95,083 views
- Spinner ComboBox DropDown List Android example code - 85,214 views
- How quickly restart adb.exe ADB server Android emulator example - 82,495 views
- Compressing a bitmap to JPG format Android example - 72,979 views
- Turn screen ON OFF Android sample code - 71,964 views
- Get Assets folder path and read txt file to string Android example code - 71,492 views
- Timer task TimerTask run cancel Android example - 65,118 views
- Start Activity from ListView item click Android example - 63,135 views
- How update View TextView with timer Android runnable example - 61,435 views
- If, else if, else statement Java Android example - 49,308 views
- Draw Arc Android basic example - 45,608 views
- Class File Editor – Source not found – Change Attached Source – Eclipse - 45,214 views
- Draw circle Android basic example - 44,605 views
- Scroll to certain position on application Android example code - 44,468 views
- Get Resource ID by Resources String Name Android example - 40,580 views
- Crop cropped cut bitmap image pictures Android example - 38,952 views
- Foreach loop cycle in Java Android example - 38,869 views
- AsyncTask Example Android with ProgressBar - 38,570 views
- Create bitmap and draw text into bitmap Android example - 37,572 views
Categories
- Android Examples Code (314)
- Android Software Download (4)
- Android Studio (43)
- Array,List,Collections (22)
- Bitmap, drawing (44)
- Bugs, warnings, errors (108)
- Dictionaries (22)
- Download (2)
- Eclipse (78)
- Fragments Tutorial (8)
- Javascript css html (12)
- PHP (3)
- Smartphone (31)
- Smartphones (3)
- SQLite database (7)
- Uncategorized (4)
Archives
Meta
Tag Archives: RadioGroup
1 views
Create RadioButton RadioGroup dynamically – Android sample
public class MainActivity extends Activity implements OnClickListener { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); LinearLayout layout = (LinearLayout) findViewById(R.id.layout); RadioGroup radioGroup = new RadioGroup(this); LinearLayout.LayoutParams p = new LinearLayout.LayoutParams( LinearLayout.LayoutParams.FILL_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT ); layout.addView(radioGroup, p); … Continue reading
Posted in Android Examples Code
Tagged dynamically, onclick, RadioButton, RadioGroup, setonclicklistener
Comments Off on Create RadioButton RadioGroup dynamically – Android sample
Android RadioGroup alignment like TableLayout
xml example source code with image. <TableLayout android:layout_width="match_parent" android:id="@+id/idTableInRadioGroup" android:layout_height="wrap_content"> <TableRow android:id="@+id/tableRow1" android:layout_width="wrap_content" android:layout_height="wrap_content"> <RadioGroup android:id="@+id/idRadio_group_1_column" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="20dp" android:orientation="vertical"> <RadioButton android:id="@+id/idRadio_1" android:text="@string/textLabel_1"/> <RadioButton android:id="@+id/idRadio_2" android:text="@string/textLabel_2"/> <RadioButton android:id="@+id/idRadio_3" android:text="@string/textLabel_3"/> </RadioGroup> <RadioGroup android:id="@+id/idRadio_group_2_column" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="20dp" android:orientation="vertical"> … Continue reading
Posted in Android Examples Code
Tagged example, RadioButton, RadioGroup, xml
Comments Off on Android RadioGroup alignment like TableLayout
RadioButton RadioGroup Java Android example
RadioButton RadioGroup Android example source code for Android developer Example for *.xml files <RadioGroup android:id="@+id/idRadio_group" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="20dp" android:orientation="vertical"> <RadioButton android:id="@+id/idRadio_1" android:text="@string/textLabel_1"/> <RadioButton android:id="@+id/idRadio_2" android:text="@string/textLabel_2"/> <RadioButton android:id="@+id/idRadio_3" android:text="@string/textLabel_3"/> </RadioGroup> Example for *.java files // import import android.widget.RadioGroup; // … Continue reading
Posted in Android Examples Code
Tagged example, java, RadioButton, RadioGroup, xml
Comments Off on RadioButton RadioGroup Java Android example