Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm working on chat module through webservice and using chat bubble as images rendered by 9 path generators but still the text is not fill with the image and i have to provide huge padding for it which result to huge gap when the message is short i'm unable to supply image but hope you get it. please help with some perfect solution

This is my code

public View getView(int position, View convertView, ViewGroup parent) {

            // TODO Auto-generated method stub
            LayoutInflater inflater = (LayoutInflater) context
                    .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            View rowView = inflater.inflate(R.layout.listitem_discuss, parent,
                    false);

            /* wrapper2 = (LinearLayout) rowView.findViewById(R.id.wrapper2); */
            TextView comment = (TextView) rowView.findViewById(R.id.comment);
            TextView comment2 = (TextView) rowView.findViewById(R.id.comment2);
            TextView comment3 = (TextView) rowView.findViewById(R.id.comment3);
            TextView comment4 = (TextView) rowView.findViewById(R.id.comment4);

            HashMap<String, String> hash = (HashMap<String, String>) listarr
                    .get(position);
            String ss = hash.get(ChatApp.CHAT).toString();
            String svs = hash.get(ChatApp.DATETIME).toString();
            String sss = hash.get(ChatApp.MESSAGE).toString();
            System.out.println(ss + "<---  --->" + sss);

            String ff[] = svs.split(" ");
            SimpleDateFormat df = new SimpleDateFormat("dd/MM/yyyy");

            Date date = new Date();
            try {
                date = new SimpleDateFormat("yyyy-MM-dd").parse(ff[0]);

                // String ffffff=df.format(date);
                System.out.println(df.format(date)
                        + "   wasssssuuuuuuuuuuuuoooooo   " + date);
            } catch (ParseException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            AttributedString attributedString = new AttributedString(ff[1]);

            wrapper = (RelativeLayout) rowView.findViewById(R.id.wrapper);

            MaintainStatus appState = ((MaintainStatus) getApplicationContext());
            if (ss.equals(appState.getName())) {

                attributedString.addAttribute(TextAttribute.FOREGROUND,
                        Color.RED, 0, 1);
                comment3.setText(sss + "   [" + ff[1]+"]");
                if (!date.equals(a)) {
                    comment2.setVisibility(View.VISIBLE);
                    comment2.setText(ff[0]);
                    a = date;
                    System.out.println(ff[0] + "   " + a + " " + date
                            + "   jgasdfiughadskufg");

                } else {
                    comment2.setVisibility(View.INVISIBLE);
                }

                comment3.setTextSize(12);
                //comment3.setBackgroundResource(R.drawable.chat);
                comment.setVisibility(View.INVISIBLE);
                comment4.setVisibility(View.INVISIBLE);

                comment.setMovementMethod(new ScrollingMovementMethod());
                 //comment.setPadding(20, 20, 60,10);
            } else {

                if (!date.equals(a)) {
                    comment4.setVisibility(View.VISIBLE);
                    comment4.setText(ff[0]);
                    a = date;

                } else {
                    comment4.setVisibility(View.INVISIBLE);
                }
                comment.setTextSize(12);
                //comment.setBackgroundResource(R.drawable.bubble_yellow);
                attributedString.addAttribute(TextAttribute.FOREGROUND,
                        Color.RED, 0, 1);
                comment.setText(sss + "   [" + ff[1]+"]");

                comment3.setVisibility(View.INVISIBLE);
                comment2.setVisibility(View.INVISIBLE);

                comment.setMovementMethod(new ScrollingMovementMethod());
                //comment.setPadding(60, 20, 5, 20);
            }

            return rowView;
        }
share|improve this question
Check this project Android speech bubble, might be helpful to you. – Paresh Mayani Jan 17 at 10:22

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.