So here is my declaration for my sdk settings:
<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="17" />
As you can see, my min is lower than my target. Now, when I design my layouts, I use match_parent
instead of fill_parent
. Since match_parent
wasn't added until API level 8, what will happen on a device that has an SDK version of level 7 and they go to load the layout with a View that uses match_parent
? More importantly:
How can I make my app backwards compatible with API level 7, but still use features from higher APIs when they are available?