The problem is that the "wrap_content" doesn't seem to be working with the View pager.
Here is the solution:
import android.content.Context;
import android.support.v4.view.ViewPager;
import android.util.AttributeSet;
import android.view.View;
public class CustomViewPager extends ViewPager {
public CustomViewPager(Context context) {
super(context);
}
public CustomViewPager(Context...
Friday, May 9, 2014
Dimming the background behind the dialogs
Posted by Polaris on 1:33 PM
I'm just reblogging what you can find here.
WindowManager.LayoutParams lp = dialog.getWindow().getAttributes();
lp.dimAmount=0.78f;
dialog.getWindow().setAttributes(lp);
dialog.getWindow().addFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND);
That's it, don't hesitate to comment, to share your knowledge and to correct m...
Posted in Android
Friday, September 27, 2013
Re-sign a .IPA file
Posted by Polaris on 11:59 AM
The problem:
To re-sign a .ipa file with a different distribution provisioning profile.
To change the bundle identifier.
Required files:
The .ipa file.
The distribution provisioning profile. (.mobileprovision)
Entitlements.plist
Put all the files under the same directory.
Create "Entitlements.plist":
Copy the following code in a text file and make sure that the extension is (.plist).
<?xml...
Posted in iOS
Sunday, August 4, 2013
Check if a Facebook page is liked using AFNetworking.
Posted by Polaris on 11:45 AM
AFHTTPClient *httpClient = [[AFHTTPClient alloc] initWithBaseURL:[NSURL URLWithString:@"https://graph.facebook.com/"]];
NSString *link = [NSString stringWithFormat:@"https://graph.facebook.com/%@/likes/%@", USER_ID, PAGE_ID];
NSDictionary *params = @{@"access_token" : [[[FBSession activeSession] accessTokenData] accessToken]};
NSMutableURLRequest *request = [httpClient...
Posted in AFNetworking, iOS
Friday, August 2, 2013
iOS, Set CoreData up.
Posted by Polaris on 12:31 AM
1- Link against CoreData.framework
2- add the following to the appDelegate.h
@property (nonatomic, strong) NSManagedObjectContext *managedObjectContext;
@property (nonatomic, strong) NSManagedObjectModel *managedObjectModel;
@property (nonatomic, strong) NSPersistentStoreCoordinator *persistentStoreCoordinator;
3- add the following to the appDelegate.m
#import <coredata/coredata.h>
// Returns...
iOS email validator
Posted by Polaris on 12:10 AM
-(BOOL) isValidEmail:(NSString *)checkString
{
BOOL stricterFilter = YES; // Discussion http://blog.logichigh.com/2010/09/02/validating-an-e-mail-address/
NSString *stricterFilterString = @"[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,4}";
NSString *laxString = @".+@.+\\.[A-Za-z]{2}[A-Za-z]*";
NSString *emailRegex = stricterFilter ? stricterFilterString : laxString;
NSPredicate...
Posted in iOS
Friday, April 5, 2013
Implement a (Like) action for any object on Facebook (except the pages) using AFNetworking.
Posted by Polaris on 7:41 PM
NSURL *baseURL = [NSURL URLWithString:@"https://graph.facebook.com/"];
AFHTTPClient *httpClient = [[AFHTTPClient alloc] initWithBaseURL:baseURL];
NSString *link = [NSString stringWithFormat:@"/%@/likes", @"OBJECT_ID"];
NSDictionary *params = @{@"access_token" : [[[FBSession activeSession] accessTokenData] accessToken]};
[httpClient postPath:link parameters:params success:^(AFHTTPRequestOperation...
Posted in AFNetworking, iOS
Subscribe to:
Posts (Atom)
How to force the View Pager to wrap its content.