Posts by W0rmH0le • 256 points
3 posts
-
1
votes1
answer699
viewsA: Change cardview and text color of a listview
Felipe The initial idea I had will not work because you are using the list view in multiple_modal mode. So here’s what we’re gonna do: Na Activity: Remove the…
-
5
votes2
answers1382
viewsA: Retrieve the first elements of an Integer list
According to the documentation, it has the function: List<E> subList(int fromIndex, int toIndex) //Returns a view of the portion of this list between the specified fromIndex, inclusive, and…
-
8
votes2
answers2629
viewsA: How do I "turn" a specific commit into a branch?
Just pass the commit ID when creating the branch: git checkout -b BRANCH_NAME COMMIT_ID Example git checkout -b teste 5d6b8da2f0e32a100087eecb73fc2dd47579748f With this, a new "test" branch will be…