Html.fromHtml()
でテキストと画像を表示しようとしましたが、画像表示では機能しません。
message = (TextView) findViewById (R.id.message);
message.setText(Html.fromHtml(
"<p><b>First, </b><br/>" +
"Please press the" + "<img src = 'addbutton.png' />" + " to insert a new event.</p>"));
テキストはうまく表示されますが、画像は表示できません。どうすればそれを改善できますか?
これは、ユーザーを参照するためのコーディングです pskink .. ..
package com.tutorial.myjob;
import Android.app.Activity;
import Android.graphics.drawable.Drawable;
import Android.graphics.drawable.LevelListDrawable;
import Android.os.Bundle;
import Android.text.*;
import Android.text.Html.ImageGetter;
import Android.widget.*;
public class HelpMenu extends Activity implements ImageGetter{
TextView message;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.help_menu);
String code = "<p><b>First, </b><br/>" +
"Please press the <img src ='addbutton.png'> button beside the to insert a new event.</p>" +
"<p><b>Second,</b><br/>" +
"Please insert the details of the event.</p>"
"<p>The icon of the is show the level of the event.<br/>" +
"eg: <img src = 'tu1.png' > is easier to do.</p></td>";
message = (TextView) findViewById (R.id.message);
Spanned spanned = Html.fromHtml(code, this, null);
message.setText(spanned);
message.setTextSize(16);
}
@Override
public Drawable getDrawable(String arg0) {
// TODO Auto-generated method stub
int id = 0;
if(arg0.equals("addbutton.png")){
id = R.drawable.addbutton;
}
if(arg0.equals("tu1.png")){
id = R.drawable.tu1;
}
LevelListDrawable d = new LevelListDrawable();
Drawable empty = getResources().getDrawable(id);
d.addLevel(0, 0, empty);
d.setBounds(0, 0, empty.getIntrinsicWidth(), empty.getIntrinsicHeight());
return d;
}
}
これは私が編集するものです...これらのコーディングは私にとってうまく機能します...私を助けてくれた人々に感謝します...感謝します〜^^