$ VBoxManage list vms
"virtualMachine" {xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}
$ vi .vagrant/machines/default/virtualbox/id
protected void setListViewHeightBasedOnChildren(ListView listView) { | |
Adapter listAdapter = listView.getAdapter(); | |
if(listAdapter == null) | |
return ; | |
int totalHeight = 0; | |
for (int i = 0; i < listAdapter.getCount(); i++) { | |
View listItem = listAdapter.getView(i, null, listView); | |
listItem.measure(View.MeasureSpec.UNSPECIFIED, View.MeasureSpec.UNSPECIFIED); | |
totalHeight += listItem.getMeasuredHeight(); |
$ VBoxManage list vms
"virtualMachine" {xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}
$ vi .vagrant/machines/default/virtualbox/id
public class ItemTypeAdapterFactory implements TypeAdapterFactory { | |
public <T> TypeAdapter<T> create(Gson gson, final TypeToken<T> type) { | |
final TypeAdapter<T> delegate = gson.getDelegateAdapter(this, type); | |
final TypeAdapter<JsonElement> elementAdapter = gson.getAdapter(JsonElement.class); | |
return new TypeAdapter<T>() { | |
public void write(JsonWriter out, T value) throws IOException { |
import android.util.SparseBooleanArray; | |
public class MultiSelector { | |
private SparseBooleanArray mSelectedPositions = new SparseBooleanArray(); | |
private boolean mIsSelectable = false; | |
public void setItemChecked(int position, boolean isChecked) { | |
mSelectedPositions.put(position, isChecked); | |
} |
public class CustomDialog extends DialogFragment { | |
// code here | |
@Override | |
public void show(FragmentManager manager, String tag) { | |
if (manager.findFragmentByTag(tag) == null) { | |
super.show(manager, tag); | |
} | |
} |
adb shell dumpsys activity activities | sed -En -e '/Running activities/,/Run #0/p' |
public final class KillReceiver extends BroadcastReceiver { | |
private Activity activity; | |
public static final String ACTION_KILL_ACTIVITY = "ACTION_KILL_ACTIVITY"; | |
public KillReceiver(Activity activity) { | |
this.activity = activity; | |
if(activity == null) throw new NullPointException("activity == null"); | |
} |
public class MyApp extends Application { | |
private AppStatus mAppStatus = AppStatus.FOREGROUND; | |
public void onCreate() { | |
super.onCreate(); | |
registerActivityLifecycleCallbacks(new MyActivityLifecycleCallbacks()); | |
} |
class DoneOnEditorActionListener implements OnEditorActionListener { | |
@Override | |
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) { | |
if (actionId == EditorInfo.IME_ACTION_DONE) { | |
InputMethodManager imm = (InputMethodManager)v.getContext().getSystemService(Context.INPUT_METHOD_SERVICE); | |
imm.hideSoftInputFromWindow(v.getWindowToken(), 0); | |
return true; | |
} | |
return false; | |
} |
Download the following ZIPs: | |
ARM Translation Installer v1.1 (http://www.mirrorcreator.com/files/0ZIO8PME/Genymotion-ARM-Translation_v1.1.zip_links) | |
Download the correct GApps for your Android version: | |
Google Apps for Android 6.0 (https://www.androidfilehost.com/?fid=24052804347835438 - benzo-gapps-M-20151011-signed-chroma-r3.zip) | |
Google Apps for Android 5.1 (https://www.androidfilehost.com/?fid=96042739161891406 - gapps-L-4-21-15.zip) | |
Google Apps for Android 5.0 (https://www.androidfilehost.com/?fid=95784891001614559 - gapps-lp-20141109-signed.zip) | |
Google Apps for Android 4.4.4 (https://www.androidfilehost.com/?fid=23501681358544845 - gapps-kk-20140606-signed.zip) | |
Google Apps for Android 4.3 (https://www.androidfilehost.com/?fid=23060877490000124 - gapps-jb-20130813-signed.zip) |