Posts by André Mion • 151 points
3 posts
-
0
votes1
answer46
viewsA: Simpleadapter Auto complete
// Boa prática usar constantes para estes valores. final String NAME = "Name"; final String EMAIL = "Email"; mAdapter = new SimpleAdapter(this, mPeopleList,…
-
1
votes1
answer384
viewsA: Textview is out of Relativelayout (with rounded edges)
You can create a custom view: package br.com.mion.android; public class MyView extends View { private Paint mPaint; private Rect mRect; private Path mPath; public MyView(Context context) {…
-
1
votes2
answers672
viewsA: Identify Dual Sim Card on Android
public static boolean isMultiSim() { int slotCount = 1; try { slotCount = (Integer) Class.forName("com.android.internal.telephony.MultiSimManager") …
androidanswered André Mion 151