0

所以我一直在寻找这个,尝试了很多东西,但它似乎不起作用......我最近开始为 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>

当我运行我的代码时,我得到一个空指针,因为文本为空,我有点卡住了。有人能指出我正确的方向或帮助我吗?

提前致谢!

4

2 回答 2

1

首先取一个哈希映射,如下所示:

private static final HashMap<String, Integer> emoticons = new HashMap<String, Integer>();
static {
  emoticons.put(":)", R.drawable.smilie1);}

其次,编写将笑脸文字转换为图像的函数

// Get image for each text smiles
public static Spannable getSmiledText(Context context, String text) {
      SpannableStringBuilder builder = new SpannableStringBuilder(text);
      int index;
      for (index = 0; index < builder.length(); index++) {
        for (Entry<String, Integer> entry : emoticons.entrySet()) {
          int length = entry.getKey().length();
          if (index + length > builder.length())
            continue;
          if (builder.subSequence(index, index + length).toString().equals(entry.getKey())) {
            builder.setSpan(new ImageSpan(context, entry.getValue()), index, index + length,
                Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
            index += length - 1;
            break;
          }
        }
      }
      return builder;
    }

第三,当您发送文本时,将所有文本变为红色,如果它包含“:)”,则调用如下函数

chattext.(getSmiledText(getApplicationContext(),":)"));

希望能帮助到你!如果您有任何疑问,请告诉我。

于 2012-08-04T05:29:03.583 回答
0

您正在convertView使用充气R.layout.main

convertView = mInflater.inflate(R.layout.main, null, false);

这是不对的;你ListView每次都在夸大你的布局。改用这个:

convertView = mInflater.inflate(R.layout.list_item, null, false);

此外,你TextView应该被包裹在一个布局中,或者convertView可能是它TextView本身,并且findViewById(...)不会在它上面工作。实际上,感谢@Jens,这个划掉的文本不适用;findViewById在您正在寻找的同一对象上使用仍然有效。

于 2012-08-04T00:46:14.717 回答