Android布局:在TextView和android:drawableStart上 - 设置图标的大小?

时间:2013-03-11 13:42:59

标签: android android-layout android-widget textview

Lars Vogel关于 SQLite的教程,自己的ContentProvider和Loader 使用以下布局作为ToDo项目列表(查看http://www.vogella.com/articles/AndroidSQLite/article.html#todo_layouttodo_row.xml布局文件):< / p>

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <ImageView
        android:id="@+id/icon"
        android:layout_width="30dp"
        android:layout_height="24dp"
        android:layout_marginLeft="4dp"
        android:layout_marginRight="8dp"
        android:layout_marginTop="8dp"
        android:src="@drawable/reminder" >
    </ImageView>

    <TextView
        android:id="@+id/label"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="6dp"
        android:lines="1"
        android:text="@+id/TextView01"
        android:textSize="24dp" 
        >
    </TextView>

</LinearLayout> 

到目前为止,这么好。它工作得很好。 Android开发人员工具(Eclipse)建议将ImageView替换为drawable的{​​{1}}属性。我尝试了以下布局定义:

TextView

即。使用<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" > <TextView android:id="@+id/label" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="8dp" android:layout_marginBottom="8dp" android:layout_marginLeft="4dp" android:drawablePadding="8dp" android:drawableStart="@drawable/reminder" android:lines="1" android:text="@+id/TextView01" android:textSize="24sp" > </TextView> </LinearLayout> 代替drawableStart。相关的ImageViewandroid:layout_marginLeft似乎工作正常。

但是,我不知道是否可以分辨出drawable的大小。 android:drawablePadding解决方案使用ImageView / android:layout_width属性来告知想要的图标尺寸。 height - 仅解决方案和TextView是否有类似内容?

谢谢,彼得

1 个答案:

答案 0 :(得分:7)

不幸的是,使用TextView无法更改xml的可绘制大小。只能使用Java来完成。

final LinearLayout layout = <get or create layou here>;
final TextView label = (TextView) layout.findViewById(R.id.label);

final float density = getResources().getDisplayMetrics().density;
final Drawable drawable = getResources().getDrawable(R.drawable.reminder);

final int width = Math.round(30 * density);
final int height = Math.round(24 * density);

drawable.setBounds(0, 0, width, height);
label.setCompoundDrawables(drawable, null, null, null);