Posts by Kamila Brito • 41 points
3 posts
-
0
votes2
answers239
viewsA: How to start an Edittext as null?
Do you want Edittext to be NULL or without written content in it? If it’s without content just do something like: editText.setText(""); This will make Edittext content blank.…
androidanswered Kamila Brito 41 -
1
votes1
answer151
viewsA: Dropdown-free Action Bar menu icon
In the.xml menu you create the option <item android:id="@+id/action_settings" android:orderInCategory="100" android:icon="@android:drawable/ic_settings" app:showAsAction="always"…
-
3
votes2
answers2275
viewsA: Change Action Bar title with Tab Bar
You need to Settitle() on Actionbar every time you change Activity. You can use to take the title directly from Activity getActionBar().setTitle(MainActivity.class.getSimpleName()); Or you can put a…