Posts by Carlos Rauta • 41 points
3 posts
-
3
votes1
answer55
viewsQ: How to change values on the y-axis
How do I change the values of the y-axis to 0,5,10,15,20? # Dados da produção da aquicultura 2013-2019 producao_aquicultura = structure(list(Valor = c(19350491, 22082777, 21063695, 20828670,…
-
1
votes2
answers410
viewsA: How do I lock the selected Radiobutton?
The setEnabled does not block the radiobutton. I managed to solve otherwise. @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);…
-
-1
votes2
answers410
viewsQ: How do I lock the selected Radiobutton?
I created a RadioGroup with 3 RadioButton internal, however I cannot fit a code that makes the user when selecting a RadioButton is prevented from selecting another. <LinearLayout…