Commit b79e9397bc1a5ed7e06ee8a9603220c0a5c9ea63
1 parent
c824959d
修改布局
Showing
3 changed files
with
55 additions
and
33 deletions
app/src/main/res/layout/activity_groupchat.xml
| ... | ... | @@ -8,7 +8,7 @@ |
| 8 | 8 | android:id="@+id/re_chat" |
| 9 | 9 | android:layout_width="match_parent" |
| 10 | 10 | android:layout_height="match_parent" |
| 11 | - android:visibility="invisible"> | |
| 11 | + android:visibility="visible"> | |
| 12 | 12 | |
| 13 | 13 | <LinearLayout |
| 14 | 14 | android:id="@+id/listVIewTop" |
| ... | ... | @@ -116,18 +116,6 @@ |
| 116 | 116 | android:orientation="horizontal"> |
| 117 | 117 | |
| 118 | 118 | <Button |
| 119 | - android:id="@+id/connectionBtn" | |
| 120 | - android:layout_width="wrap_content" | |
| 121 | - android:layout_height="wrap_content" | |
| 122 | - android:text="连接服务器" /> | |
| 123 | - | |
| 124 | - <Button | |
| 125 | - android:id="@+id/disconnect" | |
| 126 | - android:layout_width="wrap_content" | |
| 127 | - android:layout_height="wrap_content" | |
| 128 | - android:text="断开连接" /> | |
| 129 | - | |
| 130 | - <Button | |
| 131 | 119 | android:id="@+id/creatChat" |
| 132 | 120 | android:layout_width="wrap_content" |
| 133 | 121 | android:layout_height="wrap_content" |
| ... | ... | @@ -155,28 +143,22 @@ |
| 155 | 143 | android:orientation="horizontal"> |
| 156 | 144 | |
| 157 | 145 | <Button |
| 158 | - android:id="@+id/user_switch" | |
| 159 | - android:layout_width="wrap_content" | |
| 160 | - android:layout_height="wrap_content" | |
| 161 | - android:text="切换用户" /> | |
| 162 | - | |
| 163 | - <Button | |
| 164 | - android:id="@+id/switch_visitors" | |
| 146 | + android:id="@+id/exit_chat1" | |
| 165 | 147 | android:layout_width="wrap_content" |
| 166 | 148 | android:layout_height="wrap_content" |
| 167 | - android:text="切换游客" /> | |
| 149 | + android:text="退出聊天室1" /> | |
| 168 | 150 | |
| 169 | 151 | <Button |
| 170 | - android:id="@+id/button" | |
| 152 | + android:id="@+id/exit_chat2" | |
| 171 | 153 | android:layout_width="wrap_content" |
| 172 | 154 | android:layout_height="wrap_content" |
| 173 | 155 | android:text="退出聊天室2" /> |
| 174 | 156 | |
| 175 | 157 | <Button |
| 176 | - android:id="@+id/button2" | |
| 158 | + android:id="@+id/user_switch" | |
| 177 | 159 | android:layout_width="wrap_content" |
| 178 | 160 | android:layout_height="wrap_content" |
| 179 | - android:text="退出聊天室1" /> | |
| 161 | + android:text="切换用户" /> | |
| 180 | 162 | |
| 181 | 163 | </LinearLayout> |
| 182 | 164 | </LinearLayout> |
| ... | ... | @@ -188,7 +170,8 @@ |
| 188 | 170 | android:layout_width="match_parent" |
| 189 | 171 | android:layout_height="wrap_content" |
| 190 | 172 | android:layout_centerVertical="true" |
| 191 | - android:orientation="vertical"> | |
| 173 | + android:orientation="vertical" | |
| 174 | + android:visibility="invisible"> | |
| 192 | 175 | |
| 193 | 176 | |
| 194 | 177 | <LinearLayout | ... | ... |
app/src/main/res/layout/activity_main.xml
| ... | ... | @@ -12,19 +12,29 @@ |
| 12 | 12 | |
| 13 | 13 | |
| 14 | 14 | <Button |
| 15 | - android:text="群聊" | |
| 15 | + android:visibility="invisible" | |
| 16 | + android:id="@+id/groupChat" | |
| 16 | 17 | android:layout_width="match_parent" |
| 17 | 18 | android:layout_height="wrap_content" |
| 18 | 19 | android:layout_marginTop="140dp" |
| 19 | - android:id="@+id/groupChat" | |
| 20 | - /> | |
| 20 | + android:text="群聊" /> | |
| 21 | 21 | |
| 22 | 22 | <Button |
| 23 | - android:text="私聊" | |
| 23 | + android:visibility="invisible" | |
| 24 | + android:id="@+id/privateChat" | |
| 24 | 25 | android:layout_width="match_parent" |
| 25 | 26 | android:layout_height="wrap_content" |
| 26 | 27 | android:layout_below="@+id/groupChat" |
| 27 | 28 | android:layout_marginTop="34dp" |
| 28 | - android:id="@+id/privateChat" | |
| 29 | - /> | |
| 29 | + android:text="私聊" /> | |
| 30 | + | |
| 31 | + <Button | |
| 32 | + android:id="@+id/connect" | |
| 33 | + android:layout_width="match_parent" | |
| 34 | + android:layout_height="wrap_content" | |
| 35 | + android:layout_below="@+id/privateChat" | |
| 36 | + android:layout_marginTop="36dp" | |
| 37 | + android:text="连接服务器" /> | |
| 38 | + | |
| 39 | + | |
| 30 | 40 | </RelativeLayout> | ... | ... |
app/src/main/res/layout/activity_private_chat.xml
| ... | ... | @@ -62,7 +62,20 @@ |
| 62 | 62 | android:layout_height="wrap_content" |
| 63 | 63 | android:layout_gravity="center" |
| 64 | 64 | android:layout_weight="1" /> |
| 65 | - | |
| 65 | + <TextView | |
| 66 | + android:layout_width="wrap_content" | |
| 67 | + android:layout_height="wrap_content" | |
| 68 | + android:layout_gravity="center" | |
| 69 | + android:gravity="center" | |
| 70 | + android:text="name:" | |
| 71 | + android:textSize="22dp" | |
| 72 | + android:textStyle="bold" /> | |
| 73 | + <EditText | |
| 74 | + android:id="@+id/opposite_name_edit" | |
| 75 | + android:layout_width="0dp" | |
| 76 | + android:layout_height="wrap_content" | |
| 77 | + android:layout_gravity="center" | |
| 78 | + android:layout_weight="1"/> | |
| 66 | 79 | |
| 67 | 80 | <Button |
| 68 | 81 | android:id="@+id/userId_btn_top" |
| ... | ... | @@ -93,7 +106,23 @@ |
| 93 | 106 | android:layout_width="0dp" |
| 94 | 107 | android:layout_height="wrap_content" |
| 95 | 108 | android:layout_gravity="center" |
| 96 | - android:layout_weight="1" /> | |
| 109 | + android:layout_weight="0.5" /> | |
| 110 | + | |
| 111 | + <TextView | |
| 112 | + android:layout_width="wrap_content" | |
| 113 | + android:layout_height="wrap_content" | |
| 114 | + android:layout_gravity="center" | |
| 115 | + android:gravity="center" | |
| 116 | + android:text="name:" | |
| 117 | + android:textSize="22dp" | |
| 118 | + android:textStyle="bold" /> | |
| 119 | + | |
| 120 | + <EditText | |
| 121 | + android:id="@+id/my_name_edit" | |
| 122 | + android:layout_width="0dp" | |
| 123 | + android:layout_height="wrap_content" | |
| 124 | + android:layout_gravity="center" | |
| 125 | + android:layout_weight="0.5" /> | |
| 97 | 126 | |
| 98 | 127 | <Button |
| 99 | 128 | android:id="@+id/my_btn_top" | ... | ... |