Lars Vogel关于 SQLite的教程,自己的ContentProvider和Loader 使用以下布局作为ToDo项目列表(查看http://www.vogella.com/articles/AndroidSQLite/article.html#todo_layout,todo_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
。相关的ImageView
和android:layout_marginLeft
似乎工作正常。
但是,我不知道是否可以分辨出drawable的大小。 android:drawablePadding
解决方案使用ImageView
/ android:layout_width
属性来告知想要的图标尺寸。 height
- 仅解决方案和TextView
是否有类似内容?
谢谢,彼得
答案 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);