Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have two links,for eg: say facebook.com and m.facebook.com.If it's android mobile, i want to

open m.facebook.com.If it's android tablet,i want to open facebook.com link.I want to do in

webview.How it is possible?

Regards

share|improve this question

2 Answers

up vote 3 down vote accepted

Here is another solution with use of simple flag:

Set a boolean value in a specific value file like say (res/values-xlarge/):

<resources>
    <bool name="isTabletDevice">true</bool>
</resources>

Then, in the "standard" value file like say (res/values/):

<resources>
    <bool name="isTabletDevice">false</bool>
</resources>

Then from your activity, fetch this flag value to check device type :

boolean tabletDeviceSize = getResources().getBoolean(R.bool.isTabletDevice);
if (tabletDeviceSize) {
    //use tablet link
} else {
    //use mobile link
}

Thanks.

share|improve this answer
Great and easy one.. Thanks.. – Ramji Jan 2 at 10:14
@Helios-Ignite you are always welcome. – Pratik Sharma Jan 2 at 10:15
+1 this was ultimate – Pankaj Kumar Jan 2 at 17:27
@PankajKumar thanks man. – Pratik Sharma Jan 3 at 3:19

Try this it might help you.

public static boolean isTablet(Context context) {
    boolean xlarge = ((context.getResources().getConfiguration().screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK) == 4);
    boolean large = ((context.getResources().getConfiguration().screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK) == Configuration.SCREENLAYOUT_SIZE_LARGE);
    return (xlarge || large);
}

if(isTablet(context)) {
    //use tablet link
}
else {
    //use mobile link.
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.