New answers tagged
android
0
I've found the solution:
if (requestCode == CROP_FROM_CAMERA && resultcode == RESULT_CANCELED {
// crop was cancelled
}
0
Use setEnabled (boolean enabled) method. Make the imageView setEnabled (false) if you want it to be blocked.
setEnabled()
Set the parameter for one of them android:enabled="false". And in onClick() method, when the other one will be clicked just set myImageView.setEnabled(true).
0
Another way is to set the environment variable into run configuration for pom.xml.
Go to Run Configurations menu, select the Run configuration used for your project pom.xml and select the Environment Tab and select "New",
then insert:
ANDROID_HOME into name Field
path to your sdk into value field
It works, and in that way the Variable is set only when ...
0
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/main_screen_image"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<Button
...
1
You are loading the URL to myWebView which is in R.layout.activity_kochergin and not in R.layout.webview which you are setting as Activity's Content View in onItemClick.
So remove the setContentView(R.layout.webview); from onItemClick and it will work.
UPDATE
change the setOnItemClickListener to:-
listview.setOnItemClickListener(new OnItemClickListener() ...
0
I have once have exactly the same problem. The problem was connected with... too long file path to library.
It seems google-play-services_lib is too deeply nested in folder structure sometimes. Try copy it to other location.
1
Since one of the argument of your AsyncTask is the activity you can directly use
Intent s = new Intent(activity, userLandingPage.class);
activity.startActivity(s);
0
You'll have to set the checkChangedListener on Checkbox and in onCheckedchanged() calculate the amount accordingly.
int amount = 200;
CheckBox cb1 = (CheckBox) findViewById(R.id.CheckBox01);
cb1.setOnCheckedChangeListener(new OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView,
boolean ...
1
I had the same problem but from :
this site
i solved that.
the problem was the Environments Variables...
1
Because button1 is aligned to the parent's bottom
android:layout_alignParentBottom="true"
and button2 is requested to be below button1
android:layout_below="@id/button1"
so button2 is not visible
1
Yes this is possible.
Loop through your cursor and generate a csv file.
Then, send an email intent.
If you have an other question, please ask it explicity.
0
I think StinePike and bakriOnFire mean something like this
@Override
protected String doInBackground(URL... url) {
String docString = downloadHTML(url[0].toString());
// Try another url
if (docString.equals("error")) {
docString = downloadHTML("http://stackoverflow.com");
}
// Try another url
if (docString.equals("error")) {
...
0
Here is a tutorial that will guide you on how to use compile Pocket Sphinx on windows 7. I hope this will help you.
0
onPreExecute and onPostExecute methods are on UiThread, so yes you can do whatever you want to do there. Only doInBackground method is another thread so you better not to do anything will affect ui, but else would be ok.
1
The Uri builder is handling the base URI differently from the query parameters, but you've combined them in this string:
"http://www.cs.auckland.ac.nz/our_staff/vcard.php?upi="
What I think you should do is leave ?upi= off of your string literal, and then append your upi parameter and pden001 value using the appendQueryParameter() method:
...
0
Detect if other apps of your are installed then hide the icon:
PackageManager p = getPackageManager();
p.setComponentEnabledSetting(getComponentName(), PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP);
Note that the icon may not be gone until the next reboot.
0
I had this problem too for a long time but have found that the key to stopping this glitch is to turn off the predictive text option in the keyboard settings every time you experience the 1st character input only problem. Personally, I like the predictive text being on 99% of the time, but some web pages (email providers mainly) aren't configured for ...
0
Make a new bitmap with the bitmap constructor that takes rects from the bitmap that is in the imageview
0
yes you can do this
protected void onPostExecute(ResponseType result)
{
if (dialog.isShowing())
{
dialog.dismiss();
if (result.Type == 1)
{
activity.setResult(Activity.RESULT_OK);
new SendWeeklyPlanSyncHandler(activity).execute();
}
else
new ...
1
If your "huge data" is less than 50MB, you can package the database as an asset and then unpack it on first run of your app. I recommend SQLiteAssetHelper for this.
Once your APK grows to 50MB, though, things get a bit more complicated, as you would need to either download the database yourself or look into APK Expansion Files.
Once you have the SQLite ...
1
Firstly, activities must have empty constructors. The system cannot call or instantiate your activity if it requires parameters. Remove the parameters or do not define a constructor at all.
Remove:
public EnterView (Model aModel, Controller aController) {
_model = aModel;
_controller = aController;
}
The next error you would encounter would be ...
0
//
public class MainActivity extends Activity {
static final String KEY_PHONEMODE = "PHONEMODE";
public static final String KEY_MODE = "MODE";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ArrayList<HashMap<String, String>> settingsList = ...
0
Please use public void startClicked (View v){
........
....
}
instead of public void startClicked ().
1
My question is there any tool that automate this refactoring process without being involved on it ?
The new Gradle-based build system can handle this scenario. In fact, it allows you to separate the package name used by R.java (to keep it consistent) and the package name used for determining whether the app is unique on the device and in the Play Store.
...
2
I understand that I can use the Bundle and the .setArgs but will that work for my case?
A Bundle can hold an String[] or an ArrayList<String>.
Moreover, this is the way you should do it, rather than a custom constructor. Android automatically recreates your fragments on a configuration change (e.g., screen rotation), and it will use your public ...
3
Not exactly sure why but my app crashes everytime unless I remove the timer and remove the view instantly.
Use LogCat to examine the Java stack trace associated with your crash.
You will see that your exception is because you are attempting to modify the UI from a background thread. Your run() method runs on a background thread supplied by Timer and ...
0
I've tried everything but nothing works for me even Google sample projects, at last I've updated all the packages in sdk and eclipse ADT plugin to ADT 14, then it works fine :-)
0
Its all about the focus of the view, things will work when system know which view have the focus, in scrollview case the focus is on the scrollview hence things will not work accordingly.can see this for more information.
0
you can use an AsyncTask in the onCreate of activity 2. in onPreExecute show the progressdialog. In onDoinBackground complete the download. when done in onPostExecute hide the progressdialog and show the content in UI.
For Example Code
private class YourTask extends AsyncTask<Void, Void, ContentType> {
protected void onPreExecute() {
...
0
ASyncTask is what you're looking for. It shouldn't be hard to implement.
0
Start your Activity2 with a loading screen (a indeterminate progressbar, or circle is fine) or even better: cached data, and put your heavy stuff on a Thread.
At the end of the thread, remove the progressbar and display your data.
With this idea in mind, Activity2 will launch really quickly and you can display wathever you want during data loading
Thread ...
0
Instead of using LinearLayout you can use RelativeLayout.
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="20dp"
android:layout_margin="10dp"
android:orientation="vertical"
...
0
I had to use some custom onTouchEvent listener, and use a VelocityTracker to determine the distance of the inerce movement. Then I simply use a translate animator and override onAnimationEnd to set the actual view margins to the new place, and that's it :)
0
thanks for the reply, I tried the above calculation but it is not working. b
0
I think the device on which you are trying to run the Google Play Services does not contain the Google Play services APK.
Check this link on Android Developers for more clearance
Ensuring Devices Have the Google Play services APK
0
Create your text using Html.fromHtml(<HTML Formatted Code String>).
So for example, Html.fromHtml("<b>Mode</b>" + valueFromMap);, in turn will return a Spanned-object, which in turn you can directly set into your TextView in your custom ListView.
Another option would be creating a custom row layout and having 2 different TextViews for ...
0
This is not the right way to pull the values.
There is a onDateSet method which will be called automatically when you click the Set button in the DatePickerDialog.
Can you see this line in you Logcat when you click on Set in DatePickerDialog.
Date Picked--Year:" + year + " Month: " + month + " Day: " + day
1
According to the logcat the problem is with your line 134 or during inflation of imageView5. Also there's java.lang.OutOfMemoryError before the exception. So I guess your main_top_bg is a very large image file which caused this exception
2
Probably,if you want to make things properly, the most difficult regarding to this task is building your own RestClient to consume the WebServices, here I provide you one with simple HttpMethods: GET, POST.
0
try to cleaning and building the project.
If it still does'nt work you can find a similar question here that may be the issue
2
In one sentence, what is the best way to set different background image for different orientation ?
Step #1: Delete everything you've done, most notably the whole android:configChanges stuff. Ignore the background image for now, and get the rest of your configuration change logic working.
Step #2: Create -land versions of the requisite resource ...
1
In onCreate of your activity you can check for the current orientation using the this
Configuration newConfig = getResources().getConfiguration();
if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) {
Toast.makeText(this, "landscape", Toast.LENGTH_SHORT).show();
// set background for landscape
} else if ...
1
You can check for orientation in onCreate
WindowManager wm = (WindowManager) getSystemService(Context.WINDOW_SERVICE);
Display display = wm.getDefaultDisplay();
int orientation = display.getRotation();
if (orientation == Surface.ROTATION_0 || orientation == Surface.ROTATION_180)
{
// Portrait
}
else
{
// landscape
}
0
I believe you need to change TYPE_ALARM to TYPE_NOTIFICATION.
0
I think that this calculation:
float x = (float) (-diameter/2 * Math.cos(angleOffset) * 0.00001);
float z = diameter/2 * (1.0f - (float)Math.cos(angleOffset));
float y = (float) (diameter/2 * Math.sin(angleOffset)) + diameter/2 - child.getWidth();
should be this:
float x = 0.0f
float z = diameter/2.0f * (1.0f - (float)Math.cos(angleOffset)); ...
0
Check a java implementation here:
http://code.google.com/p/kanzi/source/browse/java/src/kanzi/filter/SobelFilter.java
There is no dependency on Swing/AWT or any other library. It operates directly on the image pixels and it is fast.
The results can be seen here (scroll down):
http://code.google.com/p/kanzi/wiki/Overview
0
Some of the ringtones contain ANDROID_LOOP metadata to make the music loop.
These sounds will loop forever. So it is better to use sounds specific for default notifications or sounds that doesn't have ANDROID_LOOP metadata.
0
Your problem is clearly stated here:
05-26 04:27:44.084: E/AndroidRuntime(798): java.lang.ClassCastException: android.widget.Button cannot be cast to android.widget.DatePicker
Because you are retrieving this button:
<Button
android:id="@+id/picker_start_date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
...
0
android sdk build-tools fixed my problem. Thanks Arjun U
Top 50 recent answers are included







