這實在是一個骯髒的黑客,所以只用它作爲你的最後一個資源。
如果這是你想要
您可以使用FrameLayout
同時包含ImageView
和TextView
這樣做
final TextView tv = (TextView) findViewById(R.id.TextView01);
tv.setTransformationMethod(new TransformationMethod() {
private static final String INDENT = " ";
@Override
public void onFocusChanged(View view, CharSequence sourceText,
boolean focused, int direction, Rect previouslyFocusedRect) {
// TODO Auto-generated method stub
}
@Override
public CharSequence getTransformation(CharSequence source, View view) {
return INDENT + source;
}
});
什麼。 請注意,如果圖標跨越多行,則不起作用。
是的,但它輪胎在我的TextView垂直中心drawable。我想要它在左上角佈局。 – hap497 2010-02-17 23:19:31