如何將9修補程序應用於Android TextView代碼中?Android - 在代碼中應用9修補程序
爲什麼,你可能會問?因爲我需要動態設置控件的數量。
我嘗試做類似的東西和它不工作:
(我的9補丁 「notif_bubble_white.9.png」 的代碼是R.drawable.notif_bubble_white)
tv = new TextView(this);
tv.setText("Test Message");
tv.setLayoutParams(lpL);
tv.setPadding(0, 0, paddingValue, 0);
CustomFonts.ApplyFont_Custom1(tv, context);
tv.setBackgroundResource(R.drawable.notif_bubble_white);
// tv.setTextColor(TxtColFromCl);
layout.addView(tv);
其中LPL被定義爲:
LinearLayout.LayoutParams lpL = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT,
LinearLayout.LayoutParams.WRAP_CONTENT);
問題在哪裏? – noob 2012-02-19 19:14:19
「我如何將9補丁應用於Android TextView IN CODE?」有他的問題,大聲笑 – 2012-04-22 02:55:53