The invalidate tag has no wiki summary.
0
votes
0answers
15 views
Android customview does not invalidate margins in onlayout or ondraw
I am having a problem with a custom view (which is a RelativeLayout) I made for an android app (API 8).
I have implemented a custom view that displays small images on a canvas. This all works fine, ...
0
votes
1answer
29 views
Does NSTimer run across entire app?
If I start an NSTimer like this:
@property (strong) NSTimer * messageTimer;
self.messageTimer = [NSTimer scheduledTimerWithTimeInterval:10.0
target:self
...
0
votes
0answers
8 views
NStimer multiplies each time I reload view
I have a one viewController which serves for 2 screens (main and settings)
in the view did load I have a timer that repeats unlimited times (checking condition)!
when I load setting screen and go ...
2
votes
1answer
107 views
+100
Why Is Custom View not Invalidating?
Im a noob to android development and I am having problems invalidating a view. I am using this tutorial and have no issues implementing it. However, when I change the background of the view, it ...
0
votes
0answers
28 views
Android: OnTouchEvent not worked before invalidate other object
I had the following problem. There are two classes: one extend surfaceview, other extend imageview. The first class has the reference to the second that with it to work.
public class A extend ...
3
votes
0answers
109 views
Invalidating specific user's session causing own JSF page's navigation to break
I'm currently maintaining a Map of all currently active HTTPSessions in an @ApplicationScoped bean. (As per suggestions here, and in various other topics: Invalidate Session of a specific user)
I'm ...
0
votes
0answers
20 views
existing state of has been invalidated
I built a webservice using SOA-BPEL to call Oracle PLSQL API. It works good most of the time but suddenly it says the below error. When i try to clear cache in our SOA-BPEL-Adapter datasource, it ...
0
votes
0answers
69 views
Draw/reDraw a looped set of images without redrawing other views in Android
I am requesting help solving a design issue and possible strategies to approach this problem.
Goal- to display a looped set of gif images (Weather Radar loop) on a MapView that already has an ...
0
votes
0answers
41 views
How much time invalidate() takes for calling onDraw method of a view
Maybe for most applications this doesn't stands an issue, but, what if I want to redraw a view and my particular app requires a high resolution?.What I'm trying to say here is that you can have a ...
0
votes
0answers
87 views
C# Invalidate() and Update() doesn't call OnPaint()
delegate void UpdateD();
protected override void OnPaint(PaintEventArgs e)
{
MessageBox.Show("Painting");
//other stuff
}
public void Repaint()
{
if ...
1
vote
0answers
24 views
InvalidateRect called too frequently blocks other windows from redrawing
I develop audio plugins, which are run inside their hosts and work realtime. Each plugin has its own window with controls, which often contains some kind of analysis pane, a pretty big rectangle that ...
0
votes
1answer
38 views
Symfony2 renew Session and store value
My Users can change their passwords on a form. If this the form is valid I encode it, invalidate the session by using
$this->get('security.context')->setToken(null);
...
1
vote
1answer
27 views
Determining for what user was a session invalidated
Using JBoss 5.1.0 GA. In the web.xml of my application I`m defining such session-invalidation timeout :
<session-config>
<session-timeout>5</session-timeout>
...
0
votes
0answers
30 views
How to cache filters?
I am about to implement sort and filter functionality for my site.
I am planning to use memcache for caching results for individual pages(each filter applied is a different page).
Issue is what ...
0
votes
1answer
88 views
Invalidating and ImageView outside of the MainActivity thread
My MainActivity's contentView/View can be refresh by simply using invalidate() anywhere after calling:
setContentView(R.layout.activity_main);
But if I were to call a Dialog in my item select:
...
0
votes
1answer
174 views
Ribbon Invalidate makes my outlook add-in crash
I have a pretty large outlook add-in with following ribbon.xml:
<?xml version="1.0" encoding="UTF-8"?>
<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" ...
0
votes
1answer
146 views
Why is onDraw not working when I call invalidate() within the onTouchEvent() method?
My friend and I are working an a piece of a larger Android project. What this piece needs to do is allow us to implement hand drawing on a touch screen using a bitmap and a surface view. To be ...
0
votes
4answers
96 views
How to “disable” a Java object?
I have a class like this:
public class DatabaseSession {
public makeCallOne() {...}
public makeCallTwo() {...}
public close() { ... }
}
If the user instantiates this class, I expect them to ...
1
vote
2answers
82 views
Cross-server communication in load-balanced ASP.NET web application
My ASP.NET application stores some expensive (to load) data in an application-accessible static field (using System.Web.Caching.Cache is inappropriate in this case).
My application is also ...
0
votes
1answer
130 views
Android calling (post)invalidate from JNI fails
I'm writting an android application with a View thats mainly responsible for drawing on the canvas.
And I have some native code (C++) which renderes the bitmap to be drawn on the canvas.
So I'm trying ...
0
votes
1answer
99 views
NotifyDataSetChanged does not work in ExpandableListView
This is my Expandable List View:
public class SnatchView extends ExpandableListView {
public SnatchAdt m_adt;
public FileBrowser fileBrowser;
public SnatchView(Context context) {
...
0
votes
1answer
72 views
User control repainting only when window moved
I have a custom user control which displays waveform of an audio file. I've put two instances of controls on a form. The second instance works as expected while the first instance causes the problem ...
0
votes
2answers
70 views
Invalidate content of UI in android
I have a MapActivity and a Spinner. On Spinner there is OnItemSelected event which makes a content change of view.
so i applied setContentView again on event of spinner onItemSelected because i ...
0
votes
0answers
81 views
Android authentication token invalidation does not work
I've read numerous posts about proper auth token invalidation in android but nothing seems works for me.
Please, take a look at button click listener class.
private class OnRateButtonListener ...
2
votes
1answer
124 views
PictureBox onPaint Clears Every Control
I've been having problems with onPaint event handler for a pictureBox. I've simplified the code, so right now I'm trying to achieve this: load the bitmap from path into pictureBox1 and draw a small ...
1
vote
2answers
187 views
Restore graphic after scroll panel
I'm using C# for developing a simple tool that has a picturebox inside a panel. The panel has property Autoscroll = true. If the Image of that picturebox is larger than the panel the panel has ...
0
votes
1answer
146 views
invalidate multiple rectangles or regions
I'm having problems with Invalidate() because it calls OnPaint before I'm ready...
Invalidate(new Rectangle(x, y, width, height)) works fine when I need to repaint one and only one area, but what I ...
0
votes
0answers
126 views
my custom View control not Redrawing in Fragment
I have created my custom view control which extends from the View control, only drawing some information in the onDraw method.
Everything works if I create the control on a regular activity layout. ...
0
votes
1answer
124 views
conversation gets destroyed when invalidating a session
I have a SessionManager which implements HttpSessionListener. In the SessionManager, I have a static hashtable of all active sessions. I am trying to create a function for forcing the invalidation of ...
1
vote
2answers
59 views
How to paint only visible area of my custom control in Swing?
Suppose I have big custom control inscribed inside JScrollPane or clipped by other reasons. How to determine from within paintComponent() method which coordinates are to paint?
0
votes
1answer
87 views
Invalidate a session for a filter unit test in Grails
I would like to test a filter that verifies if a session is valid but I'm not sure how to do it.
My filter is something like this.
class SampleFilters {
def filters = {
...
0
votes
0answers
328 views
Using android slidingmenu lib with selector
I've been trying to use selectors in slidingmenu for 2 days without managing to make it work.
Here is what I want to do :
I've a menu which have a ListView in it. I want the selector to point at one ...
0
votes
0answers
13 views
Shake gesture + NSTimer
I have a shake gesture that triggers a couple of balls to move back and forth.
The "only" problem I have is to make the balls to stop when I stop shaking the device. Can someone guide me in the right ...
0
votes
1answer
257 views
Tomcat doesn't invalidates session after calling session.invalidate()
I have a webservice in jaxws to which I can connect after login. Everything works perfectly, I pass login and password and I'm logged in, and I'm creating session for this user on WS server. After all ...
0
votes
0answers
29 views
How to invalidate a client session if not acknowledged in few seconds from EMS server
I have TIBCO EMS Queue and I have 2 receivers ( 2 MDBs) in exclusive mode from this queue, it means only one will be actively consuming and other one is in standby mode, now here is my challenge, If ...
0
votes
1answer
407 views
Unable to destroy session in jsf managed bean
Currently, I am creating a web application for an online shopping cart and I need to maintain session on each jsf page..
My questions are :
How can I create and destroy session in managed bean
How ...
0
votes
0answers
312 views
Android How to call invalidate in SurfaceView
I have created a class from SurfaceView.I wanted it that when i touch on the screen then the screen will be refreshed by calling invalidate() function. But in my implementation invalidate () is not ...
0
votes
1answer
81 views
ListField's method invalidate does not work
I'm writing a custom list field, but it doesn't not work when i invoke invalidate method. The screen is always empty, while the data of list field is not null or empty!
Please help me figure out the ...
0
votes
1answer
114 views
Using invalidate() , java.lang.NullPointerexception
I am currently working on a Connect four game
I have managed to develop the app to point to where the game knows what column the user has selected. I am currently trying to change the colour of the ...
0
votes
0answers
35 views
Invalidate not working in an activity
I'm having a problem with an invalidate which is not working.
Here is my class :
public class NotesActivity extends Activity {
private static final String TAG = NotesActivity.class.toString();
...
0
votes
1answer
103 views
Grails 2 - Too many Ajax calls will invalidate user sesssion
*update: sorry, i didn't give a context. I'm using Grails 2.1.2 with the spring security plugin installed. Js lib -> jQuery (latest)
I have a page that submits lots of synchronous ajax calls (not my ...
0
votes
1answer
107 views
Objective-c timer wont invalidate
Here is my situation: I am making a countdown app which works fine but does not appear to stop when I call [stopWatchTimer invalidate];, and I have no idea why. Here is my code:
- ...
2
votes
1answer
191 views
Android: invalidate(dirty)
It seems like Android really doesn't like invalidate (Rect dirty), which is used to invalidate only part of a canvas. When I invalidate part of a canvas (shown in green below) and a ToggleButton ...
2
votes
1answer
131 views
c++: swapping vectors and pointer invalidation?
I seem to be having a problem with swapping the elements of two vectors. I have two vectors, x and y that hold objects of type myclass. The myclass has only one public member w. I create a vector of ...
0
votes
0answers
57 views
using invalidate on google map
I'm having an issue trying to call invalidate to redraw my map after I use map,panBy. I want to do this because after I use this function there's a grey space on the map like the map needs to be ...
5
votes
1answer
219 views
Redraw Window Control Synchronously (with blocking method)
What I am trying to do is to cause a control (in the same process, but which I have no control of) to redraw itself, and for my code to block until it finished redrawing.
I tried using UpdateWindow ...
1
vote
1answer
173 views
Once again: Why my ImageView is not refreshing?
I know this question has been answered several times before, but this newbie could not find an answer that worked.
I tried to implement a panorama viewer using a TouchImageView (extends ImageView). ...
2
votes
1answer
643 views
Android GoogleMaps V2 doesnt refresh
My App displays the driven route of the user. After a few seconds, the map stops loading new content and looks like this:
My Code:
XML
<fragment
...
0
votes
1answer
433 views
MFC: How to draw in a static text
I try to draw in a static text control named IDC_RESULT.When I click the OK button, the static text will display different picture according to the shape I selected.So I declare three bool variable: ...
-1
votes
1answer
103 views
my android application works good on my emulator but in the device is crashed
When I run my application in the emulator it works well, but in my device it crashed.
When I open my activity and call the ondraw method
I figured that the Invalidate(); is the problem:
protected ...








