1.实现的效果:由自带的左图对话框的样式变为右图单一的反馈形式,并把用户信息放到同一个界面
2.布局文件:
把umeng_fb_activity_contact.xml和umeng_fb_activity_conversation.xml合二为一,如下:
- <RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="#ffffff"
- android:orientation="vertical"
- tools:context=".ConversationActivity">
- <EditText
- android:id="@+id/umeng_fb_replyContent"
- android:layout_width="match_parent"
- android:layout_height="150dp"
- android:layout_marginLeft="15dp"
- android:layout_marginRight="15dp"
- android:layout_marginTop="15dp"
- android:background="@drawable/Feedback_bg"
- android:gravity="top"
- android:hint="@string/umeng_fb_reply_content_hint"
- android:paddingBottom="10dp"
- android:paddingLeft="15dp"
- android:paddingRight="10dp"
- android:paddingTop="10dp"
- android:textColorHint="#dbdbdb"
- android:textSize="15sp">
- <requestFocus/>
- </EditText>
- <TextView
- android:id="@+id/textView1"
- android:layout_width="wrap_content"
- android:layout_height="26dp"
- android:layout_alignLeft="@+id/umeng_fb_replyContent"
- android:layout_below="@+id/umeng_fb_replyContent"
- android:layout_marginTop="10dp"
- android:text="@string/umeng_fb_contact_info"
- android:textColorHighlight="#797979"
- android:textSize="15sp"/>
- <EditText
- android:id="@+id/umeng_fb_contactInfo"
- android:layout_width="fill_parent"
- android:layout_height="50dp"
- android:layout_alignLeft="@+id/textView1"
- android:layout_alignRight="@+id/umeng_fb_replyContent"
- android:layout_below="@+id/textView1"
- android:layout_marginTop="5dp"
- android:background="@drawable/ic_more_item_default"
- android:focusable="true"
- android:focusableInTouchMode="true"
- android:hint="@string/umeng_fb_contact_info_hint"
- android:paddingBottom="10dp"
- android:paddingLeft="15dp"
- android:paddingRight="10dp"
- android:paddingTop="10dp"
- android:textColorHint="#dbdbdb"
- android:textSize="15sp">
- </EditText>
- </RelativeLayout>
3.主要代码:
把友盟官方提供的ConversationActivity和ContactActivity合二为一,如下:
copy