我已經創建了帶有圖標的文本按鈕。但我的圖標更大。我怎樣才能爲每個分辨率創建不同的圖像大小?在Android中調整圖標+文本按鈕的大小
注:我使用的是Android 2.2.3工作室
這裏是我的XML文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.asus.teacher.TeacherActivity">
<Button
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:drawableLeft="@drawable/ic_eye"
android:text="Drawable left"
android:textSize="10dp"
/>
</RelativeLayout>
他們很酷,但我不知道是否有任何其他方式來調整XML文件中的圖像的大小? –
我編輯了答案...如果圖標很大,您可以將特定尺寸高度設置爲包裝圖標的按鈕...... – rafsanahmad007