嗨我的布局中有按钮,因为按钮am设置图像为drawable,它在hdpi,xhdpi(即在nexus 4,samsung S III中)工作正常但在Nexus 7中没有。但我知道它将使用tvdpi如果没有找到名为tvdpi的文件夹然后将使用hdpi.I我的按钮使用的代码如下
<Button
android:id="@+id/my_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:layout_weight="1"
android:background="@android:drawable/editbox_background_normal"
android:gravity="left"
android:textColor="#ff0000"
android:drawableRight="@drawable/image"
android:textSize="14sp" />
</button>
我的问题是它完全在按钮内显示图像,但需要触摸我的按钮的右上方,顶部和底部。请指导我。谢谢提前