Posts by Rafael Henrique Fernandes • 1 point
3 posts
-
0
votes2
answers63
viewsA: How to center 02 Textview of Videoview
You can use Relativelayout and place the attribute in the textview android:layout_centerInParent="true" <?xml version="1.0" encoding="utf-8"?> <RelativeLayout…
-
0
votes2
answers536
viewsA: Running threads on android
Você pode usar esse dois passo que montei. 1 - Primeiro crie uma classe chamada AsyncControl public class AsyncControl { private ProgressDialog mProgressDialog; public static void runAsync(final…
-
0
votes2
answers1106
viewsA: How to open an Activity from a java notification on android?
PendingIntent notificationIntent = preparePendingIntent(context,stringValue,valueBoolean); PendingIntent preparePendingIntent(Context context,String valueString,boolean valueBoolean) { Intent intent…