注册 登录
编程论坛 Android开发

关于AppWidget的问题

yu1543054075 发布于 2015-11-10 19:21, 3311 次点击
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    <TextView
        android:id="@+id/tv"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="#ff0000"
        android:textSize="20sp"
        android:text="测试使用了PendingIntent和RemoteViews的appwidget窗口控件"></TextView>
    <Button
        android:id="@+id/bt"
        android:layout_width="fill_parent"
        android:layout_height="100dp"
        android:text="测试"></Button>
   

</LinearLayout>
只有本站会员才能查看附件,请 登录

为什么虚拟手机上显示的按钮会那么小,跟我设置的按钮高度不符?请大神指教!!!
1 回复
#2
kevin_012015-11-29 21:38
dp是设备独立像素,这与模拟器的分辨率是有关的
1