大约有 3,614 项符合查询结果(耗时:0.0353秒) [XML]
Autoincrement VersionCode with gradle extra properties
I'm building an Android app with gradle. Until now I used the Manifest file to increase the versionCode, but I would like to read the versionCode from an external file and depending if it is the release flavor or the debug flavor increase the versionCode. I tried the extra properties, but you can't ...
How to delete SQLite database from Android programmatically
I would like to delete the database file from the Android file system programatically? Can I have a shell script launch adb which in turns runs a shell script in the Android space to do the database deletion? Can I get this done from within a JUnit test case (with a system() call)?
...
How to get a list of installed android applications and pick one to run
...lowing is the code to get the list of activities/applications installed on Android :
Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
List<ResolveInfo> pkgAppsList = context.getPackageManager().queryIntentActivities( mainIntent, 0);
...
Can I avoid the native fullscreen video player with HTML5 on iPhone or android?
...should hopefully sort it out for you. I don't know if it will work on your Android devices. It's a webkit property, so it might. Worth a go, anyway.
share
|
improve this answer
|
...
In Android, how do I set margins in dp programmatically?
...argin = 200;
Code Example for MarginLayoutParams:
http://www.codota.com/android/classes/android.view.ViewGroup.MarginLayoutParams
share
|
improve this answer
|
follow
...
Google Espresso or Robotium [closed]
...presso and Robotium are instrumentation-based frameworks, meaning they use Android Instrumentation to inspect and interact with Activities under test.
At Google, we started out by using Robotium because it was more convenient than stock instrumentation (hats off to Robotium developers for making it...
Android TextWatcher.afterTextChanged vs TextWatcher.onTextChanged
... an error to attempt to make changes to s from this callback.
Right from Android's Reference for TextWatcher.
share
|
improve this answer
|
follow
|
...
Android: How to Programmatically set the size of a Layout
As part of an Android App I am building a button set. The buttons are part of a nested set of LinearLayouts. Using weight I have the set resizing itself automatically based on the size of the containing parent LinearLayout. The idea is, based on the pixel count and density of the screen, to set the ...
How to get the selected index of a RadioGroup in Android
Is there an easy way to get the selected index of a RadioGroup in Android or do I have to use OnCheckedChangeListener to listen for changes and have something that holds the last index selected?
...
How to make part of the text Bold in android at runtime?
...new SpannableStringBuilder("HELLOO");
final StyleSpan bss = new StyleSpan(android.graphics.Typeface.BOLD); // Span to make text bold
final StyleSpan iss = new StyleSpan(android.graphics.Typeface.ITALIC); //Span to make text italic
sb.setSpan(bss, 0, 4, Spannable.SPAN_INCLUSIVE_INCLUSIVE); // make f...