所以我一直在寻找这个,尝试了很多东西,但它似乎不起作用......我最近开始为 Android 编程,我正在为一个聊天应用程序网站。
现在我想在应用程序中添加笑脸/表情符号,通过搜索我找到了这些网站:http: //blog.stylingandroid.com/archives/177 http://www.coderanch.com /t/488673/Android/Mobile/styling-items-ListView
我的代码:
private void updateList()
{
ListView list = this.getListView();
if(!parsedData.isEmpty())
{
ArrayAdapter<String> adapter = new MyAdapter(this, R.layout.list_item, parsedData);
list.setAdapter(adapter);
list.setTextFilterEnabled(true);
}
}
class MyAdapter extends ArrayAdapter<String>
{
ArrayList<String> mStrings;
LayoutInflater mInflater;
public MyAdapter(Context context, int textViewResourceId, ArrayList<String> parsedData)
{
super(context, textViewResourceId, parsedData);
mStrings = parsedData;
mInflater = (LayoutInflater) HopeloosChatActivity.this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
}
@Override
public View getView(int position, View convertView, ViewGroup parent)
{
if (convertView == null)
{
convertView = mInflater.inflate(R.layout.main, null, false);
}
TextView text = (TextView)convertView.findViewById(R.id.TextView);
SpannableStringBuilder ssb = new SpannableStringBuilder("Test ");
Bitmap emoticon = BitmapFactory.decodeResource( getResources(), R.drawable.icon);
ssb.setSpan(new ImageSpan(emoticon), 5, 6, Spannable.SPAN_INCLUSIVE_INCLUSIVE);
text.setText(ssb, BufferType.SPANNABLE);
return convertView;
}
}
我确实使用 setContentView(R.layout.main); 在 OnCreate() 方法中
我的 main.xml 包含 ListView 部分:
<ListView android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1" />
list_item.xml 包含 TextView:
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/TextView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dp"
android:textSize="16sp"
android:autoLink="web"
android:linksClickable="true" >
</Textview>
当我运行我的代码时,我得到一个空指针,因为文本为空,我有点卡住了。有人能指出我正确的方向或帮助我吗?
提前致谢!