android_lesson_1

px(pixels)像素。一般hvga代表320X480像素,这个用的比较多。

dip或dp设备独立像素。这个和设备硬件有关,一般为了支持wvga、hvga和qvga推荐使用这个,不依赖像素。

sp(scaled pixels) 比例像素

为了适应不同分辨率、像素密度,推荐使用dip,文字使用sp。

<!-- 打电话权限-->
<uses-permission android:name="android.permission.CALL_PHONE"/>
<!-- 打电话意图-->
Intent intent=new Intent(Intent.ACTION_CALL,Uri.parse("tel:110"));

<!-- 发短信权限-->
<uses-permission android:name="android.permission.SEND_SMS"/>


你可能感兴趣的:(android)