初始代码
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<translate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:fromXDelta="0"
|
||||
android:fromYDelta="100%"
|
||||
android:toXDelta="0"
|
||||
android:toYDelta="0"
|
||||
android:duration="150">
|
||||
</translate>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<translate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:fromXDelta="0"
|
||||
android:fromYDelta="0"
|
||||
android:toXDelta="0"
|
||||
android:toYDelta="100"
|
||||
android:duration="150">
|
||||
</translate>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate
|
||||
android:duration="200"
|
||||
android:fromYDelta="100%"
|
||||
android:interpolator="@android:anim/accelerate_interpolator"
|
||||
android:toYDelta="0"/>
|
||||
</set>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate
|
||||
android:duration="200"
|
||||
android:fromYDelta="0"
|
||||
android:interpolator="@android:anim/accelerate_interpolator"
|
||||
android:toYDelta="100%"/>
|
||||
</set>
|
||||
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_pressed="true" android:color="@color/community_btn_negative_hover">
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<corners android:radius="2.5dp" />
|
||||
<solid android:color="@color/community_btn_negative_hover" />
|
||||
</shape>
|
||||
</item>
|
||||
<item android:color="@color/community_btn_negative">
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<corners android:radius="2.5dp" />
|
||||
<solid android:color="@color/community_btn_negative" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_pressed="true" android:color="@color/community_btn_positive_hover" >
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<corners android:radius="5dp" />
|
||||
<solid android:color="@color/community_btn_positive_hover" />
|
||||
</shape>
|
||||
</item>
|
||||
<item android:color="@color/community_btn_positive" >
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle" >
|
||||
<corners android:radius="5dp" />
|
||||
<solid android:color="@color/community_btn_positive" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
|
After Width: | Height: | Size: 598 B |
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<gradient android:endColor="#F3F6FF" android:startColor="#47E3EAFD"/>
|
||||
|
||||
<corners android:radius="8dp"/>
|
||||
</shape>
|
||||
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<solid android:color="#ffffff" />
|
||||
<corners android:radius="10dp" />
|
||||
</shape>
|
||||
|
After Width: | Height: | Size: 345 B |
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<item android:drawable="@drawable/common_check_box_selected" android:state_checked="true" />
|
||||
<item android:drawable="@drawable/common_check_box_unselected" android:state_checked="false" />
|
||||
<item android:drawable="@drawable/common_check_box_unselected" />
|
||||
|
||||
</selector>
|
||||
|
After Width: | Height: | Size: 426 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<solid android:color="#70C160" />
|
||||
<size android:width="1dp" />
|
||||
</shape>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<solid android:color="#EEEEEE"/>
|
||||
<size android:height="1dp"/>
|
||||
</shape>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<corners android:radius="4dp"/>
|
||||
<solid android:color="#F5F5F7"/>
|
||||
|
||||
</shape>
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_enabled="false">
|
||||
<shape android:shape="rectangle" >
|
||||
<solid android:color="#FFCFD7E0"/>
|
||||
<corners android:radius="10dp"/>
|
||||
</shape>
|
||||
</item>
|
||||
<item>
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#006EFF"/>
|
||||
<corners android:radius="10dp"/>
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
|
After Width: | Height: | Size: 218 KiB |
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval">
|
||||
|
||||
<stroke android:width="1dp" android:color="#FFDBDFE5"/>
|
||||
<solid android:color="#FFF4F5F9"/>
|
||||
</shape>
|
||||
|
After Width: | Height: | Size: 337 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 239 B |
|
After Width: | Height: | Size: 227 B |
|
After Width: | Height: | Size: 205 B |
|
After Width: | Height: | Size: 581 B |
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape>
|
||||
|
||||
</shape>
|
||||
|
After Width: | Height: | Size: 27 KiB |
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<gradient android:endColor="#FDE7DF" android:startColor="#47FEE9E2"/>
|
||||
|
||||
<corners android:radius="8dp"/>
|
||||
|
||||
</shape>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:fromDegrees="0"
|
||||
android:toDegrees="360"
|
||||
android:repeatMode="restart"
|
||||
android:interpolator="@android:interpolator/linear"
|
||||
android:drawable="@drawable/community_progress_bar_ring"
|
||||
android:pivotX="50%"
|
||||
android:pivotY="50%">
|
||||
|
||||
</rotate>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<corners android:radius="4dp"/>
|
||||
<solid android:color="#F4F5F9"/>
|
||||
</shape>
|
||||
|
After Width: | Height: | Size: 805 B |
|
After Width: | Height: | Size: 840 B |
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<corners android:radius="8dp"/>
|
||||
<solid android:color="#FFFFFF"/>
|
||||
<stroke android:color="#DDDDDD" android:width="1dp"/>
|
||||
|
||||
</shape>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="ring"
|
||||
android:innerRadius="22.5dp"
|
||||
android:thickness="1.5dp"
|
||||
android:useLevel="false">
|
||||
|
||||
<solid android:color="?attr/core_primary_color"/>
|
||||
</shape>
|
||||
|
After Width: | Height: | Size: 391 B |
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<stroke
|
||||
android:width="1dp"
|
||||
android:color="#FF999999" />
|
||||
<solid android:color="#fff" />
|
||||
|
||||
</shape>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_pressed="true">
|
||||
<shape android:shape="rectangle" >
|
||||
<solid android:color="#FFEBF0F6"/>
|
||||
</shape>
|
||||
</item>
|
||||
<item>
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#FFFFFFFF"/>
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
@@ -0,0 +1,259 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical"
|
||||
tools:context=".ui.page.CreateTopicActivity">
|
||||
|
||||
<com.tencent.qcloud.tuikit.timcommon.component.TitleBarLayout
|
||||
android:id="@+id/create_topic_title"
|
||||
app:title_bar_middle_title="@string/community_create_topic"
|
||||
app:title_bar_can_return="true"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
<ScrollView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="24dp"
|
||||
android:paddingStart="16dp"
|
||||
android:paddingEnd="16dp">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/topic_name_label"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentTop="true"
|
||||
android:text="@string/community_topic_name"
|
||||
android:textColor="#666666"
|
||||
android:textSize="14sp" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.component.TextCountView
|
||||
android:id="@+id/topic_name_count"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignTop="@id/topic_name_label"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:textColor="#666666"
|
||||
android:textSize="14sp"
|
||||
app:bind_edit_text="@id/topic_name_edit"
|
||||
app:limit_count="20"
|
||||
tools:text="0/20" />
|
||||
|
||||
<EditText
|
||||
android:id="@+id/topic_name_edit"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/topic_name_label"
|
||||
android:layout_marginTop="17dp"
|
||||
android:background="@null"
|
||||
android:textCursorDrawable="@drawable/common_edit_cursor"
|
||||
android:textColorHint="#999999"
|
||||
android:textAlignment="viewStart"
|
||||
android:hint="@string/community_edit_tips_input"
|
||||
android:textSize="16sp"
|
||||
android:maxLength="20" />
|
||||
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="1dp"
|
||||
android:background="#FFEEEEEE"
|
||||
android:layout_below="@id/topic_name_edit"
|
||||
android:layout_marginTop="12dp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/topic_category_label"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/topic_name_edit"
|
||||
android:layout_marginTop="24dp"
|
||||
android:text="@string/community_topic_category" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.component.SettingsLinearView
|
||||
android:id="@+id/topic_category_linear"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="50dp"
|
||||
android:layout_below="@id/topic_category_label"
|
||||
android:background="#00FFFFFF"
|
||||
android:textColor="#666666"
|
||||
android:textSize="14sp"
|
||||
app:setting_is_show_bottom_line="true"
|
||||
app:setting_name="@string/community_button_tips_select" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/topic_type_label"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/topic_category_linear"
|
||||
android:layout_marginTop="24dp"
|
||||
android:text="@string/community_topic_type" />
|
||||
|
||||
<!-- text -->
|
||||
<RelativeLayout
|
||||
android:id="@+id/text_type_area"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/topic_type_label"
|
||||
android:layout_marginTop="25dp">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/text_type_image"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginTop="35dp"
|
||||
android:background="@drawable/community_topic_text_type_icon" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/text_type_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_marginStart="8dp"
|
||||
android:layout_toEndOf="@id/text_type_image"
|
||||
android:text="@string/community_topic_type_text_title"
|
||||
android:textColor="#000000"
|
||||
android:textSize="16sp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/text_type_desc"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/text_type_title"
|
||||
android:layout_alignStart="@id/text_type_title"
|
||||
android:layout_marginTop="4dp"
|
||||
android:layout_toStartOf="@id/text_check_box"
|
||||
android:text="@string/community_topic_type_text_desc"
|
||||
android:textColor="#999999"
|
||||
android:textSize="12sp" />
|
||||
|
||||
<CheckBox
|
||||
android:id="@+id/text_check_box"
|
||||
android:layout_width="18dp"
|
||||
android:layout_height="18dp"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginStart="36dp"
|
||||
android:background="@drawable/core_selected_icon_light"
|
||||
android:button="@null"
|
||||
android:checked="true" />
|
||||
</RelativeLayout>
|
||||
<!-- text -->
|
||||
|
||||
<!-- video -->
|
||||
<RelativeLayout
|
||||
android:id="@+id/video_type_area"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/text_type_area"
|
||||
android:layout_marginTop="33dp">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/video_type_image"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginTop="35dp"
|
||||
android:background="@drawable/community_topic_video_type_icon" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/video_type_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_marginStart="8dp"
|
||||
android:layout_toEndOf="@id/video_type_image"
|
||||
android:text="@string/community_topic_type_video_title_coming"
|
||||
android:textColor="#000000"
|
||||
android:textSize="16sp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/video_type_desc"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/video_type_title"
|
||||
android:layout_alignStart="@id/video_type_title"
|
||||
android:layout_marginTop="4dp"
|
||||
android:layout_toStartOf="@id/video_check_box"
|
||||
android:text="@string/community_topic_type_video_desc"
|
||||
android:textColor="#999999"
|
||||
android:textSize="12sp" />
|
||||
|
||||
<CheckBox
|
||||
android:id="@+id/video_check_box"
|
||||
android:layout_width="18dp"
|
||||
android:layout_height="18dp"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginStart="36dp"
|
||||
android:background="@drawable/community_check_box_unselected"
|
||||
android:button="@null"
|
||||
android:enabled="false"
|
||||
android:visibility="invisible"/>
|
||||
</RelativeLayout>
|
||||
<!-- video -->
|
||||
|
||||
<!-- live -->
|
||||
<RelativeLayout
|
||||
android:id="@+id/live_type_area"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/video_type_area"
|
||||
android:layout_marginTop="33dp">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/live_type_image"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginTop="35dp"
|
||||
android:background="@drawable/community_topic_live_type_icon" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/live_type_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_marginStart="8dp"
|
||||
android:layout_toEndOf="@id/live_type_image"
|
||||
android:text="@string/community_topic_type_live_title_coming"
|
||||
android:textColor="#000000"
|
||||
android:textSize="16sp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/live_type_desc"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/live_type_title"
|
||||
android:layout_alignStart="@id/live_type_title"
|
||||
android:layout_marginTop="4dp"
|
||||
android:layout_toStartOf="@id/live_check_box"
|
||||
android:text="@string/community_topic_type_live_desc"
|
||||
android:textColor="#999999"
|
||||
android:textSize="12sp" />
|
||||
|
||||
<CheckBox
|
||||
android:id="@+id/live_check_box"
|
||||
android:button="@null"
|
||||
android:background="@drawable/community_check_box_unselected"
|
||||
android:layout_width="18dp"
|
||||
android:layout_height="18dp"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginStart="36dp"
|
||||
android:enabled="false"
|
||||
android:visibility="invisible"/>
|
||||
</RelativeLayout>
|
||||
<!-- live -->
|
||||
|
||||
|
||||
</RelativeLayout>
|
||||
</ScrollView>
|
||||
|
||||
</LinearLayout>
|
||||
@@ -0,0 +1,167 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical"
|
||||
tools:context=".ui.page.JoinCommunityActivity">
|
||||
|
||||
<com.tencent.qcloud.tuikit.timcommon.component.TitleBarLayout
|
||||
android:id="@+id/join_community_title"
|
||||
app:title_bar_can_return="true"
|
||||
app:title_bar_middle_title="@string/community_search_community"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal"
|
||||
android:background="#FFFFFF"
|
||||
android:paddingStart="16dp"
|
||||
android:paddingTop="8dp"
|
||||
android:paddingEnd="16dp"
|
||||
android:paddingBottom="8dp">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="32dp"
|
||||
android:layout_weight="1"
|
||||
android:background="@drawable/community_search_bg"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/search_icon"
|
||||
android:layout_width="16dp"
|
||||
android:layout_height="16dp"
|
||||
android:scaleType="centerCrop"
|
||||
android:layout_marginStart="18dp"
|
||||
android:background="@drawable/community_search_icon" />
|
||||
|
||||
<EditText
|
||||
android:id="@+id/community_id_input"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="7dp"
|
||||
android:background="@null"
|
||||
android:maxLines="1"
|
||||
android:inputType="text"
|
||||
android:textColorHint="#999999"
|
||||
android:hint="@string/community_search_community_id"
|
||||
android:textCursorDrawable="@drawable/common_edit_cursor"
|
||||
android:textColor="#000000"
|
||||
android:textSize="14sp" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/cancel_button"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="12dp"
|
||||
android:text="@string/community_cancel"
|
||||
android:textColor="#262626"
|
||||
android:textSize="14sp"
|
||||
android:visibility="gone"
|
||||
tools:visibility="visible"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/community_item_rl"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="20dp"
|
||||
android:background="#FFFFFF"
|
||||
android:paddingStart="16dp"
|
||||
android:paddingTop="8dp"
|
||||
android:paddingEnd="16dp"
|
||||
android:paddingBottom="11dp"
|
||||
android:visibility="gone"
|
||||
tools:visibility="visible">
|
||||
|
||||
<com.tencent.qcloud.tuikit.timcommon.component.RoundCornerImageView
|
||||
android:id="@+id/community_avatar"
|
||||
android:layout_width="42dp"
|
||||
android:layout_height="42dp"
|
||||
app:corner_radius="4dp"
|
||||
tools:background="@android:drawable/ic_menu_gallery"/>
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_marginStart="8dp"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_toEndOf="@id/community_avatar"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/community_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textSize="16sp"
|
||||
android:textColor="#000000"
|
||||
tools:text="Name"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/community_owner"
|
||||
android:layout_marginTop="4dp"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textSize="12sp"
|
||||
android:textColor="#999999"
|
||||
tools:text="Owner"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.component.SelectTextButton
|
||||
android:id="@+id/join_community_button"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:layout_marginTop="4dp"
|
||||
android:paddingStart="8dp"
|
||||
android:paddingTop="2dp"
|
||||
android:paddingEnd="8dp"
|
||||
android:paddingBottom="2dp"
|
||||
android:text="@string/community_join"
|
||||
android:textColor="#006EFF"
|
||||
android:textSize="12sp"
|
||||
app:button_radius="50dp"
|
||||
app:color="#006EFF" />
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/not_found_ll"
|
||||
android:layout_marginTop="130dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
android:visibility="gone"
|
||||
tools:visibility="visible">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="128dp"
|
||||
android:layout_height="109dp"
|
||||
android:layout_gravity="center"
|
||||
android:background="@drawable/community_not_found_icon"/>
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:layout_marginTop="18dp"
|
||||
android:text="@string/community_not_found_community"
|
||||
android:textSize="14sp"
|
||||
android:textColor="#999999"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
</LinearLayout>
|
||||
@@ -0,0 +1,65 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical"
|
||||
android:background="#F6F6F6"
|
||||
tools:context=".ui.page.TopicInfoActivity">
|
||||
|
||||
<com.tencent.qcloud.tuikit.timcommon.component.TitleBarLayout
|
||||
android:id="@+id/topic_info_title"
|
||||
app:title_bar_can_return="true"
|
||||
app:title_bar_middle_title="@string/community_topic_settings"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.component.SettingsLinearView
|
||||
android:id="@+id/topic_name_setting"
|
||||
app:setting_name="@string/community_topic_name"
|
||||
app:setting_is_show_bottom_line="true"
|
||||
app:setting_is_show_arrow="false"
|
||||
android:background="#FFFFFF"
|
||||
android:paddingStart="16dp"
|
||||
android:paddingEnd="16dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="50dp"/>
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.component.SettingsLinearView
|
||||
android:id="@+id/topic_category_setting"
|
||||
app:setting_name="@string/community_topic_category"
|
||||
app:setting_is_show_arrow="false"
|
||||
android:paddingStart="16dp"
|
||||
android:paddingEnd="16dp"
|
||||
android:background="#FFFFFF"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="50dp"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/clear_topic_message_button"
|
||||
android:background="#FFFFFF"
|
||||
android:textColor="#FF584C"
|
||||
android:textSize="16sp"
|
||||
android:gravity="center"
|
||||
android:text="@string/clear_message"
|
||||
android:layout_marginTop="20dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="49dp"
|
||||
tools:visibility="visible"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/delete_topic_button"
|
||||
android:background="#FFFFFF"
|
||||
android:textColor="#FF584C"
|
||||
android:textSize="16sp"
|
||||
android:gravity="center"
|
||||
android:text="@string/community_delete_topic"
|
||||
android:layout_marginTop="20dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="49dp"
|
||||
android:visibility="gone"
|
||||
tools:visibility="visible"/>
|
||||
|
||||
|
||||
</LinearLayout>
|
||||
@@ -0,0 +1,89 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="@color/white"
|
||||
android:orientation="vertical">
|
||||
|
||||
<com.tencent.qcloud.tuikit.timcommon.component.RoundFrameLayout
|
||||
android:id="@+id/banner_frame"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="#EBECF0"
|
||||
app:left_top_corner_radius="8dp">
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.component.banner.BannerView
|
||||
android:id="@+id/banner_view"
|
||||
android:layout_gravity="center"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="150dp"
|
||||
android:background="#FFFFFF" />
|
||||
|
||||
</com.tencent.qcloud.tuikit.timcommon.component.RoundFrameLayout>
|
||||
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/create_community"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="10dp"
|
||||
android:layout_marginTop="20dp"
|
||||
android:layout_marginEnd="10dp"
|
||||
android:background="@drawable/community_blue_round_rect"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal"
|
||||
android:paddingStart="6dp"
|
||||
android:paddingTop="12dp"
|
||||
android:paddingBottom="10dp">
|
||||
|
||||
<com.tencent.qcloud.tuikit.timcommon.component.gatherimage.ShadeImageView
|
||||
android:id="@+id/create_community_icon"
|
||||
android:layout_width="28dp"
|
||||
android:layout_height="28dp"
|
||||
android:background="@drawable/community_create_icon"
|
||||
app:round_radius="8dp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/create_community_tv"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="8dp"
|
||||
android:text="@string/community_create_community"
|
||||
android:textColor="#333333"
|
||||
android:textSize="14sp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/join_community"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="10dp"
|
||||
android:layout_marginTop="19dp"
|
||||
android:layout_marginEnd="10dp"
|
||||
android:background="@drawable/community_pink_round_rect"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal"
|
||||
android:paddingStart="6dp"
|
||||
android:paddingTop="12dp"
|
||||
android:paddingBottom="10dp">
|
||||
|
||||
<com.tencent.qcloud.tuikit.timcommon.component.gatherimage.ShadeImageView
|
||||
android:id="@+id/join_community_icon"
|
||||
android:layout_width="28dp"
|
||||
android:layout_height="28dp"
|
||||
android:background="@drawable/community_join_icon"
|
||||
app:round_radius="8dp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/join_community_tv"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="8dp"
|
||||
android:text="@string/community_join_community"
|
||||
android:textColor="#333333"
|
||||
android:textSize="14sp" />
|
||||
|
||||
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/image"
|
||||
android:scaleType="centerCrop"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"/>
|
||||
|
||||
</FrameLayout>
|
||||
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/banner_list"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"/>
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.component.banner.BannerIndicatorView
|
||||
android:id="@+id/banner_indicator"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="8dp"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_alignParentBottom="true"/>
|
||||
|
||||
</RelativeLayout>
|
||||
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:orientation="vertical"
|
||||
android:background="@null"
|
||||
android:paddingBottom="15dp"
|
||||
android:paddingStart="10dp"
|
||||
android:paddingEnd="10dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<ListView
|
||||
android:id="@+id/item_list"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="@drawable/community_bottom_sheet_border" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/cancel_button"
|
||||
android:text="@string/cancel"
|
||||
android:textSize="17sp"
|
||||
android:gravity="center"
|
||||
android:textColor="?attr/core_primary_color"
|
||||
android:textStyle="bold"
|
||||
android:background="@drawable/community_bottom_sheet_border"
|
||||
android:layout_marginTop="10dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="48dp"/>
|
||||
|
||||
</LinearLayout>
|
||||
@@ -0,0 +1,186 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
|
||||
android:background="#FFFFFF"
|
||||
android:orientation="vertical">
|
||||
|
||||
<com.tencent.qcloud.tuikit.timcommon.component.TitleBarLayout
|
||||
android:id="@+id/create_community_title"
|
||||
app:title_bar_middle_title="@string/community_create_community"
|
||||
app:title_bar_can_return="true"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/cover_iv"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="150dp"
|
||||
android:background="@drawable/community_cover_default"
|
||||
android:scaleType="centerCrop" />
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/face_select_fl"
|
||||
android:layout_width="56dp"
|
||||
android:layout_height="56dp"
|
||||
android:layout_alignStart="@id/cover_iv"
|
||||
android:layout_alignBottom="@id/cover_iv"
|
||||
android:layout_marginStart="16dp"
|
||||
android:layout_marginBottom="-28dp">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/face_iv"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/select_face_ll"
|
||||
android:orientation="vertical"
|
||||
android:gravity="center"
|
||||
android:background="@drawable/community_select_face_bg"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="24dp"
|
||||
android:layout_height="21dp"
|
||||
android:background="@drawable/community_select_camera"/>
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="4dp"
|
||||
android:text="@string/community_select_face"
|
||||
android:textColor="#999999"
|
||||
android:textSize="10sp"/>
|
||||
</LinearLayout>
|
||||
|
||||
</FrameLayout>
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.component.SelectTextButton
|
||||
android:id="@+id/select_cover_button"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="26dp"
|
||||
android:layout_alignEnd="@id/cover_iv"
|
||||
android:layout_alignBottom="@id/cover_iv"
|
||||
android:layout_marginEnd="16dp"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:paddingStart="8dp"
|
||||
android:paddingTop="4dp"
|
||||
android:paddingEnd="8dp"
|
||||
android:paddingBottom="4dp"
|
||||
android:text="@string/community_select_cover"
|
||||
android:textColor="#FFFFFF"
|
||||
android:textSize="12sp"
|
||||
app:border_width="1dp"
|
||||
app:button_radius="50dp"
|
||||
app:color="#FFFFFF" />
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/cover_iv"
|
||||
android:paddingStart="16dp"
|
||||
android:paddingTop="44dp"
|
||||
android:paddingEnd="16dp">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/name_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/community_community_name"
|
||||
android:textColor="#666666"
|
||||
android:textSize="14sp" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textColor="@color/read_dot_bg"
|
||||
android:text="*"
|
||||
android:layout_marginStart="4dp"
|
||||
android:textSize="14sp"
|
||||
android:layout_toEndOf="@id/name_title"
|
||||
android:layout_alignTop="@id/name_title" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.component.TextCountView
|
||||
android:id="@+id/name_count"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignTop="@id/name_title"
|
||||
android:layout_alignParentEnd="true"
|
||||
app:limit_count="20"
|
||||
app:bind_edit_text="@id/name_edit_text"
|
||||
android:textColor="#666666"
|
||||
android:textSize="14sp"
|
||||
tools:text="0/20" />
|
||||
|
||||
<EditText
|
||||
android:id="@+id/name_edit_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/name_title"
|
||||
android:layout_marginTop="16dp"
|
||||
android:background="@null"
|
||||
android:hint="@string/community_edit_tips_input"
|
||||
android:maxLength="20"
|
||||
android:textColorHint="#999999"
|
||||
android:textCursorDrawable="@drawable/common_edit_cursor"
|
||||
android:textSize="16sp" />
|
||||
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="1dp"
|
||||
android:background="#FFEEEEEE"
|
||||
android:layout_below="@id/name_edit_text"
|
||||
android:layout_marginTop="12dp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/introduction_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/name_edit_text"
|
||||
android:layout_marginTop="24dp"
|
||||
android:text="@string/community_community_introduction"
|
||||
android:textColor="#666666"
|
||||
android:textSize="14sp" />
|
||||
|
||||
<EditText
|
||||
android:id="@+id/introduction_edit_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="120dp"
|
||||
android:layout_below="@id/introduction_title"
|
||||
android:layout_marginTop="3dp"
|
||||
android:background="@drawable/community_edit_text_rect_bg"
|
||||
android:gravity="start|top"
|
||||
android:hint="@string/community_edit_tips_input"
|
||||
android:maxLength="60"
|
||||
android:padding="12dp"
|
||||
android:textColorHint="#999999"
|
||||
android:textCursorDrawable="@drawable/common_edit_cursor"
|
||||
android:textSize="16sp" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.component.TextCountView
|
||||
android:id="@+id/introduction_count"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignEnd="@id/introduction_edit_text"
|
||||
android:layout_alignBottom="@id/introduction_edit_text"
|
||||
android:layout_marginEnd="8dp"
|
||||
android:layout_marginBottom="8dp"
|
||||
app:limit_count="60"
|
||||
app:bind_edit_text="@id/introduction_edit_text"
|
||||
android:textColor="#666666"
|
||||
android:textSize="14sp"
|
||||
tools:text="0/60" />
|
||||
</RelativeLayout>
|
||||
</RelativeLayout>
|
||||
|
||||
|
||||
</LinearLayout>
|
||||
@@ -0,0 +1,65 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:background="#FFFFFFFF"
|
||||
android:orientation="vertical">
|
||||
|
||||
<RelativeLayout
|
||||
android:background="#EBECF0"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<com.tencent.qcloud.tuikit.timcommon.component.RoundCornerImageView
|
||||
android:id="@+id/cover_image"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="150dp"
|
||||
android:scaleType="centerCrop"
|
||||
app:left_top_corner_radius="8dp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/community_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignStart="@id/cover_image"
|
||||
android:layout_alignBottom="@id/cover_image"
|
||||
android:layout_marginStart="20dp"
|
||||
android:layout_marginBottom="9.5dp"
|
||||
android:ellipsize="end"
|
||||
android:maxLines="1"
|
||||
android:maxWidth="180dp"
|
||||
android:textColor="#FFFFFF"
|
||||
android:textSize="20sp"
|
||||
tools:text="IM official community" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/share_icon"
|
||||
android:background="@drawable/community_share_icon"
|
||||
android:layout_alignTop="@id/more_icon"
|
||||
android:layout_marginEnd="16dp"
|
||||
android:layout_width="16dp"
|
||||
android:layout_height="16dp"
|
||||
android:layout_toStartOf="@id/more_icon" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/more_icon"
|
||||
android:layout_width="16dp"
|
||||
android:layout_height="16dp"
|
||||
android:layout_alignBottom="@id/cover_image"
|
||||
android:layout_alignEnd="@id/cover_image"
|
||||
android:layout_marginEnd="16dp"
|
||||
android:layout_marginBottom="11dp"
|
||||
android:background="@drawable/community_more_icon" />
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.ui.widget.CommunityTopicList
|
||||
android:paddingTop="10dp"
|
||||
android:id="@+id/community_topic_list"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
|
||||
</LinearLayout>
|
||||
@@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:orientation="horizontal"
|
||||
android:paddingTop="10dp"
|
||||
android:paddingBottom="10dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<TextView
|
||||
android:layout_weight="1"
|
||||
android:id="@+id/experience_name"
|
||||
android:gravity="start"
|
||||
android:textAlignment="viewStart"
|
||||
android:textSize="14sp"
|
||||
android:textColor="#FF333333"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
tools:text="12312\n111" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/experience_state"
|
||||
android:layout_marginStart="20dp"
|
||||
android:paddingStart="9dp"
|
||||
android:paddingEnd="9dp"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:background="@drawable/community_experience_button_selector"
|
||||
android:gravity="center"
|
||||
android:textSize="12sp"
|
||||
android:text="@string/community_to_be_experienced"
|
||||
android:textColor="#FFFFFFFF"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="20dp" />
|
||||
|
||||
</LinearLayout>
|
||||
@@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<com.tencent.qcloud.tuikit.timcommon.component.RoundCornerImageView
|
||||
android:id="@+id/face_url"
|
||||
android:layout_width="48dp"
|
||||
android:layout_height="48dp"
|
||||
android:scaleType="centerCrop"
|
||||
tools:background="@android:drawable/ic_menu_gallery"
|
||||
app:corner_radius="8dp" />
|
||||
|
||||
<View
|
||||
android:id="@+id/selected_border_view"
|
||||
android:layout_width="48dp"
|
||||
android:layout_height="48dp"
|
||||
android:background="@drawable/selected_border"/>
|
||||
|
||||
<com.tencent.qcloud.tuikit.timcommon.component.UnreadCountTextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignTop="@id/face_url"
|
||||
android:layout_alignEnd="@id/face_url"
|
||||
android:layout_marginTop="-5dp"
|
||||
android:layout_marginEnd="-5dp"
|
||||
android:visibility="gone"
|
||||
tools:text="1"
|
||||
tools:visibility="visible" />
|
||||
|
||||
</RelativeLayout>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/index_tv"
|
||||
android:layout_width="16dp"
|
||||
android:layout_height="16dp"
|
||||
android:background="@drawable/community_imploded_index_bg"
|
||||
android:gravity="center"
|
||||
android:textSize="10sp"
|
||||
tools:text="1"
|
||||
android:layout_marginEnd="8dp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/link_tv"
|
||||
android:textSize="14sp"
|
||||
android:textColor="#FF2A84FF"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
tools:text="123"/>
|
||||
</LinearLayout>
|
||||
@@ -0,0 +1,163 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:paddingTop="8dp"
|
||||
android:background="#EBECF0"
|
||||
tools:context=".ui.page.TUICommunityFragment">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/community_list_area"
|
||||
android:layout_width="62dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_alignParentStart="true"
|
||||
android:background="#EBECF0"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical"
|
||||
android:paddingStart="7dp"
|
||||
android:paddingEnd="7dp">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/home_view"
|
||||
android:layout_width="20dp"
|
||||
android:layout_height="20dp"
|
||||
android:clickable="false"
|
||||
android:visibility="gone"
|
||||
android:layout_marginBottom="42dp"
|
||||
android:background="?attr/core_title_bar_back_icon" />
|
||||
|
||||
<FrameLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<com.tencent.qcloud.tuikit.timcommon.component.gatherimage.ShadeImageView
|
||||
android:id="@+id/self_face"
|
||||
android:layout_width="48dp"
|
||||
android:layout_height="48dp" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.timcommon.component.gatherimage.ShadeImageView
|
||||
android:id="@+id/self_face_select_border"
|
||||
android:layout_width="48dp"
|
||||
android:layout_height="48dp"
|
||||
android:background="@drawable/community_self_avatar_select_border" />
|
||||
</FrameLayout>
|
||||
|
||||
<View
|
||||
android:id="@+id/divide_line"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="1dp"
|
||||
android:layout_marginStart="2.63dp"
|
||||
android:layout_marginTop="20dp"
|
||||
android:layout_marginEnd="2.63dp"
|
||||
android:background="#1A000000" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical">
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.ui.widget.CommunityGroupList
|
||||
android:id="@+id/community_group_list"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1" />
|
||||
|
||||
<FrameLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="20dp">
|
||||
|
||||
<com.tencent.qcloud.tuikit.timcommon.component.gatherimage.ShadeImageView
|
||||
android:id="@+id/add_community"
|
||||
android:layout_width="48dp"
|
||||
android:layout_height="48dp"
|
||||
android:background="@drawable/community_add_group" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.timcommon.component.gatherimage.ShadeImageView
|
||||
android:id="@+id/add_community_select_border"
|
||||
android:layout_width="48dp"
|
||||
android:layout_height="48dp"
|
||||
android:background="@drawable/selected_border"
|
||||
android:visibility="gone" />
|
||||
</FrameLayout>
|
||||
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/network_area"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_toEndOf="@id/community_list_area"
|
||||
android:background="#EBF0F6"
|
||||
android:orientation="vertical"
|
||||
android:visibility="visible"
|
||||
tools:visibility="visible">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/network_connect_failed"
|
||||
android:orientation="horizontal"
|
||||
android:background="#EBF0F6"
|
||||
android:gravity="center_vertical"
|
||||
android:layout_marginTop="8dp"
|
||||
android:layout_marginBottom="8dp"
|
||||
android:layout_marginStart="18dp"
|
||||
android:layout_marginEnd="18dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:visibility="gone"
|
||||
tools:visibility="visible">
|
||||
<ImageView
|
||||
android:layout_width="18dp"
|
||||
android:layout_height="18dp"
|
||||
android:background="@drawable/community_network_failed" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="8dp"
|
||||
android:textColor="#E54545"
|
||||
android:text="@string/community_network_connect_failed"
|
||||
android:textSize="14sp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/network_connecting"
|
||||
android:orientation="horizontal"
|
||||
android:background="#EBECF0"
|
||||
android:gravity="center_vertical"
|
||||
android:layout_marginTop="8dp"
|
||||
android:layout_marginBottom="8dp"
|
||||
android:layout_marginStart="18dp"
|
||||
android:layout_marginEnd="18dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:visibility="gone"
|
||||
tools:visibility="visible">
|
||||
<ProgressBar
|
||||
android:layout_width="18dp"
|
||||
android:layout_height="18dp"
|
||||
android:indeterminateDrawable="@drawable/community_progress_bar_bg"
|
||||
android:indeterminateDuration="500"/>
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textColor="#006EFF"
|
||||
android:layout_marginStart="8dp"
|
||||
android:text="@string/community_network_connecting"
|
||||
android:textSize="14sp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<androidx.viewpager2.widget.ViewPager2
|
||||
android:id="@+id/community_content_view_pager"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_below="@id/network_area"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:layout_toEndOf="@id/community_list_area"
|
||||
android:background="#00FFFFFF" />
|
||||
|
||||
</RelativeLayout>
|
||||
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:cardBackgroundColor="@color/white"
|
||||
app:cardUseCompatPadding="true"
|
||||
app:cardElevation="8dp">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/pop_text"
|
||||
android:textSize="15sp"
|
||||
android:gravity="center"
|
||||
android:textColor="#888888"
|
||||
android:layout_margin="15dp"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"/>
|
||||
|
||||
</androidx.cardview.widget.CardView>
|
||||
@@ -0,0 +1,60 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="60dp"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal"
|
||||
android:paddingStart="@dimen/page_margin"
|
||||
android:paddingEnd="@dimen/page_margin">
|
||||
|
||||
<com.tencent.qcloud.tuikit.timcommon.component.gatherimage.ShadeImageView
|
||||
android:id="@+id/group_apply_member_icon"
|
||||
android:layout_width="50dp"
|
||||
android:layout_height="50dp"
|
||||
android:scaleType="fitCenter"
|
||||
android:background="?attr/core_default_user_icon" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="10dp"
|
||||
android:layout_marginEnd="10dp"
|
||||
android:layout_weight="1"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/group_apply_member_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:lines="1"
|
||||
android:textColor="#FF000000" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/group_apply_reason"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:lines="1"
|
||||
android:textColor="@color/text_color_gray" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<Button
|
||||
android:id="@+id/group_apply_accept"
|
||||
android:layout_width="60dp"
|
||||
android:layout_height="40dp"
|
||||
android:layout_marginEnd="10dp"
|
||||
android:background="@color/community_bg_positive_btn"
|
||||
android:onClick="startConversation"
|
||||
android:text="@string/community_accept"
|
||||
android:textColor="#fff" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/group_apply_refuse"
|
||||
android:layout_width="60dp"
|
||||
android:layout_height="40dp"
|
||||
android:layout_marginEnd="10dp"
|
||||
android:background="@color/community_bg_negative_btn"
|
||||
android:onClick="startConversation"
|
||||
android:text="@string/community_refuse"
|
||||
android:textColor="#fb6155" />
|
||||
</LinearLayout>
|
||||
@@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<com.tencent.qcloud.tuikit.timcommon.component.gatherimage.ShadeImageView
|
||||
android:id="@+id/group_member_icon"
|
||||
android:layout_width="@dimen/community_profile_member_item_width"
|
||||
android:layout_height="@dimen/community_profile_member_item_width"
|
||||
android:scaleType="centerCrop"
|
||||
android:background="?attr/core_default_user_icon" />
|
||||
|
||||
|
||||
<TextView
|
||||
android:id="@+id/group_member_name"
|
||||
android:layout_width="@dimen/community_profile_member_item_width"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="9.6dp"
|
||||
android:layout_marginTop="7.68dp"
|
||||
android:gravity="center"
|
||||
android:lines="1"
|
||||
android:maxEms="3"
|
||||
android:ellipsize="end"
|
||||
android:textSize="@dimen/community_profile_member_item_name_size"
|
||||
android:textColor="@color/community_profile_member_name_text_color" />
|
||||
</LinearLayout>
|
||||
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical">
|
||||
|
||||
|
||||
<com.tencent.qcloud.tuikit.timcommon.component.TitleBarLayout
|
||||
android:id="@+id/group_member_title_bar"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/group_all_members"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
</LinearLayout>
|
||||
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="#FFFFFFFF"
|
||||
app:cardBackgroundColor="#FFFFFFFF"
|
||||
app:cardUseCompatPadding="true"
|
||||
app:cardElevation="8dp">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/pop_text"
|
||||
android:textSize="15sp"
|
||||
android:gravity="center"
|
||||
android:textColor="#888888"
|
||||
android:layout_margin="15dp"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"/>
|
||||
|
||||
</androidx.cardview.widget.CardView>
|
||||
@@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="58.48dp"
|
||||
android:background="@color/white"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<CheckBox
|
||||
android:id="@+id/group_member_check_box"
|
||||
android:layout_width="20dp"
|
||||
android:layout_height="20dp"
|
||||
android:layout_marginEnd="10dp"
|
||||
android:layout_marginStart="10dp"
|
||||
android:background="@drawable/community_checkbox_selector"
|
||||
android:button="@null"
|
||||
android:layout_gravity="center"
|
||||
android:gravity="center"
|
||||
android:clickable="false"
|
||||
android:focusable="false"
|
||||
android:visibility="gone" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.timcommon.component.gatherimage.ShadeImageView
|
||||
android:id="@+id/group_member_icon"
|
||||
android:layout_width="38.4dp"
|
||||
android:layout_height="38.4dp"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:layout_marginStart="15.36dp"
|
||||
android:layout_marginEnd="11.52dp"
|
||||
android:scaleType="centerCrop" />
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/group_member_name"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:ellipsize="end"
|
||||
android:textAlignment="viewStart"
|
||||
android:gravity="center_vertical"
|
||||
android:layout_weight="1"
|
||||
android:lines="1"
|
||||
android:textColor="#ff111111"
|
||||
android:textSize="17.28sp" />
|
||||
|
||||
<View
|
||||
android:id="@+id/view_line"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0.55dp"
|
||||
android:background="#D9D9D9" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="@color/status_bar_color"
|
||||
android:orientation="vertical">
|
||||
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.ui.widget.CommunityMemberList
|
||||
android:id="@+id/member_list_layout"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent" />
|
||||
|
||||
|
||||
</LinearLayout>
|
||||
@@ -0,0 +1,193 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="@drawable/popup_card_bg"
|
||||
android:orientation="vertical"
|
||||
android:padding="20dp">
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingTop="20dp"
|
||||
android:paddingBottom="20dp">
|
||||
|
||||
<com.tencent.qcloud.tuikit.timcommon.component.RoundCornerImageView
|
||||
android:id="@+id/community_group_face"
|
||||
android:layout_width="70dp"
|
||||
android:layout_height="70dp"
|
||||
android:layout_alignParentStart="true"
|
||||
android:layout_alignParentTop="true"
|
||||
android:scaleType="centerCrop"
|
||||
app:corner_radius="4.5dp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/community_name_tv"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignTop="@id/community_group_face"
|
||||
android:layout_marginStart="16dp"
|
||||
android:layout_toEndOf="@id/community_group_face"
|
||||
android:textColor="#000000"
|
||||
android:textSize="16sp" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/community_id_ll"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/community_name_tv"
|
||||
android:layout_alignStart="@id/community_name_tv"
|
||||
android:layout_marginTop="4dp"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/community_group_id_label"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/community_group_id_label"
|
||||
android:textDirection="locale"
|
||||
android:textColor="#999999"
|
||||
android:textSize="12sp" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/community_group_id_tv"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:ellipsize="end"
|
||||
android:maxLines="1"
|
||||
android:textColor="#999999"
|
||||
android:textSize="12sp"
|
||||
tools:text="123" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.component.TextCopyView
|
||||
android:id="@+id/copy_button"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="9dp"
|
||||
android:maxLines="1"
|
||||
app:bind_copy_text="@id/community_group_id_tv"
|
||||
android:text="@string/community_copy"
|
||||
android:textColor="#006EFF"
|
||||
android:textSize="12sp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/community_introduction"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/community_id_ll"
|
||||
android:layout_alignStart="@id/community_id_ll"
|
||||
android:layout_marginTop="10dp"
|
||||
android:ellipsize="end"
|
||||
android:maxLines="3"
|
||||
android:textColor="#333333"
|
||||
android:textSize="12sp" />
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="1dp"
|
||||
android:background="#EEEEEE" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:paddingTop="15dp"
|
||||
android:paddingBottom="20dp">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/user_list"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<com.tencent.qcloud.tuikit.timcommon.component.RoundCornerImageView
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:background="@drawable/community_popup_users_icon"
|
||||
app:corner_radius="20dp" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="4dp"
|
||||
android:text="@string/community_user_list"
|
||||
android:textColor="#000000"
|
||||
android:textSize="12sp" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/share_community"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<com.tencent.qcloud.tuikit.timcommon.component.RoundCornerImageView
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:background="@drawable/community_popup_share_icon"
|
||||
app:corner_radius="20dp" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="4dp"
|
||||
android:text="@string/community_share_community"
|
||||
android:textColor="#000000"
|
||||
android:textSize="12sp" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/settings"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<com.tencent.qcloud.tuikit.timcommon.component.RoundCornerImageView
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:background="@drawable/community_popup_settings_icon"
|
||||
app:corner_radius="20dp" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="4dp"
|
||||
android:text="@string/community_settings"
|
||||
android:textColor="#000000"
|
||||
android:textSize="12sp" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.component.SelectTextButton
|
||||
android:id="@+id/exit_community_button"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="44dp"
|
||||
android:text="@string/community_exit_community"
|
||||
android:textColor="#FF584C"
|
||||
android:textSize="16sp"
|
||||
app:button_radius="22dp"
|
||||
app:color="#FF584C" />
|
||||
|
||||
</LinearLayout>
|
||||
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/item_text"
|
||||
android:paddingTop="14dp"
|
||||
android:paddingBottom="14dp"
|
||||
android:textSize="16sp"
|
||||
android:textColor="#000000"
|
||||
android:gravity="center"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
tools:text="item"/>
|
||||
|
||||
</FrameLayout>
|
||||
@@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="@drawable/popup_card_bg"
|
||||
android:orientation="vertical">
|
||||
|
||||
<RelativeLayout
|
||||
android:orientation="horizontal"
|
||||
android:paddingBottom="20dp"
|
||||
android:paddingTop="20dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/cancel_button"
|
||||
android:textColor="#006EFF"
|
||||
android:textSize="16sp"
|
||||
android:layout_marginStart="16dp"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/cancel" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/title"
|
||||
android:textColor="#666666"
|
||||
android:textSize="16sp"
|
||||
android:layout_centerInParent="true"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
tools:text="select group"/>
|
||||
</RelativeLayout>
|
||||
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/select_list"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
|
||||
</LinearLayout>
|
||||
@@ -0,0 +1,200 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="#00FFFFFF"
|
||||
android:orientation="vertical">
|
||||
|
||||
<ScrollView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/community_banner"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="#EBECF0">
|
||||
|
||||
<com.tencent.qcloud.tuikit.timcommon.component.RoundFrameLayout
|
||||
android:id="@+id/banner_frame"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:left_top_corner_radius="8dp">
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.component.banner.BannerView
|
||||
android:id="@+id/banner_view"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="150dp"
|
||||
android:layout_gravity="center"
|
||||
android:background="#FFFFFF" />
|
||||
|
||||
</com.tencent.qcloud.tuikit.timcommon.component.RoundFrameLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingTop="20dp"
|
||||
android:paddingStart="15dp"
|
||||
android:paddingEnd="15dp"
|
||||
android:layout_below="@id/banner_frame"
|
||||
android:background="#FFFFFFFF"
|
||||
android:orientation="vertical">
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/experience_card"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="#FFFFFFFF"
|
||||
app:cardBackgroundColor="#FFFFFFFF"
|
||||
app:cardElevation="4dp"
|
||||
app:cardCornerRadius="8dp"
|
||||
app:cardUseCompatPadding="true"
|
||||
app:contentPaddingBottom="17.5dp"
|
||||
app:contentPaddingLeft="16dp"
|
||||
app:contentPaddingRight="16dp"
|
||||
app:contentPaddingTop="17.5dp">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="7.5dp"
|
||||
android:text="@string/community_recommended_experience"
|
||||
android:textAlignment="viewStart"
|
||||
android:textColor="#000000"
|
||||
android:textSize="16sp" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.ui.widget.CommunityExperienceView
|
||||
android:id="@+id/create_community_experience"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:content_text="@string/community_experience_create_community" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.ui.widget.CommunityExperienceView
|
||||
android:id="@+id/add_community_experience"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:content_text="@string/community_experience_add_community" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.ui.widget.CommunityExperienceView
|
||||
android:id="@+id/send_message_experience"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:content_text="@string/community_experience_send_message" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.ui.widget.CommunityExperienceView
|
||||
android:id="@+id/reply_message_experience"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:content_text="@string/community_experience_reply_message" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.ui.widget.CommunityExperienceView
|
||||
android:id="@+id/disband_community_experience"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:content_text="@string/community_experience_disband_community" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.ui.widget.CommunityExperienceView
|
||||
android:id="@+id/create_topic_experience"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:content_text="@string/community_experience_create_topic" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.ui.widget.CommunityExperienceView
|
||||
android:id="@+id/delete_topic_experience"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:content_text="@string/community_experience_delete_topic" />
|
||||
</LinearLayout>
|
||||
</androidx.cardview.widget.CardView>
|
||||
|
||||
<androidx.cardview.widget.CardView
|
||||
android:id="@+id/imploded_card"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="20dp"
|
||||
app:cardCornerRadius="8dp"
|
||||
app:cardElevation="4dp"
|
||||
app:cardUseCompatPadding="true"
|
||||
app:contentPaddingBottom="16.5dp"
|
||||
app:contentPaddingLeft="16dp"
|
||||
app:contentPaddingRight="16dp"
|
||||
app:contentPaddingTop="16.5dp">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="13.5dp"
|
||||
android:textAlignment="viewStart"
|
||||
android:text="@string/community_quick_integration"
|
||||
android:textColor="#000000"
|
||||
android:textSize="16sp" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.ui.widget.CommunityIndexLinkView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:content_index="1"
|
||||
app:content_link="@string/community_integration_download_code_link"
|
||||
app:content_link_text="@string/community_integration_download_code" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.ui.widget.CommunityIndexLinkView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="8dp"
|
||||
app:content_index="2"
|
||||
app:content_link="@string/community_integration_login_link"
|
||||
app:content_link_text="@string/community_integration_login" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.ui.widget.CommunityIndexLinkView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="8dp"
|
||||
app:content_index="3"
|
||||
app:content_link="@string/community_integration_create_viewPager_link"
|
||||
app:content_link_text="@string/community_integration_create_viewPager" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.ui.widget.CommunityIndexLinkView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="8dp"
|
||||
app:content_index="4"
|
||||
app:content_link="@string/community_integration_build_fragment_link"
|
||||
app:content_link_text="@string/community_integration_build_fragment" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.ui.widget.CommunityIndexLinkView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="8dp"
|
||||
app:content_index="5"
|
||||
app:content_link="@string/community_integration_build_audio_video_call_link"
|
||||
app:content_link_text="@string/community_integration_build_audio_video_call" />
|
||||
</LinearLayout>
|
||||
|
||||
</androidx.cardview.widget.CardView>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/experience_more_button"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:textColor="#2A84FF"
|
||||
android:textSize="12sp"
|
||||
android:text="@string/community_experience_more_demos"
|
||||
android:layout_marginTop="30dp"
|
||||
android:layout_marginBottom="20dp"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"/>
|
||||
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
</ScrollView>
|
||||
|
||||
</LinearLayout>
|
||||
@@ -0,0 +1,178 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical"
|
||||
tools:context=".ui.page.CommunitySettingsActivity">
|
||||
|
||||
<com.tencent.qcloud.tuikit.timcommon.component.TitleBarLayout
|
||||
android:id="@+id/community_settings_title"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:title_bar_can_return="true"
|
||||
app:title_bar_middle_title="@string/community_settings" />
|
||||
|
||||
<ScrollView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="50dp"
|
||||
android:textAlignment="viewStart"
|
||||
android:gravity="center_vertical|start"
|
||||
|
||||
android:paddingStart="16dp"
|
||||
android:paddingEnd="16dp"
|
||||
android:text="@string/community_community_information"
|
||||
android:textColor="#000000"
|
||||
android:textSize="12sp" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.component.SettingsLinearView
|
||||
android:id="@+id/community_name_lv"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="50dp"
|
||||
android:background="#FFFFFFFF"
|
||||
android:paddingStart="16dp"
|
||||
android:paddingEnd="16dp"
|
||||
app:setting_is_show_bottom_line="true"
|
||||
app:setting_is_show_arrow="false"
|
||||
app:setting_name="@string/community_settings_community_name" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.component.SettingsLinearView
|
||||
android:id="@+id/community_face_lv"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="50dp"
|
||||
android:background="#FFFFFFFF"
|
||||
android:paddingStart="16dp"
|
||||
android:paddingEnd="16dp"
|
||||
app:setting_is_show_arrow="false"
|
||||
app:setting_content_image_height="30dp"
|
||||
app:setting_content_image_width="30dp"
|
||||
app:setting_is_show_bottom_line="true"
|
||||
app:setting_is_show_content_image="true"
|
||||
app:setting_name="@string/community_settings_community_avatar" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.component.SettingsLinearView
|
||||
android:id="@+id/community_cover_lv"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="50dp"
|
||||
android:background="#FFFFFFFF"
|
||||
android:paddingStart="16dp"
|
||||
android:paddingEnd="16dp"
|
||||
app:setting_is_show_arrow="false"
|
||||
app:setting_content_image_height="30dp"
|
||||
app:setting_content_image_width="65dp"
|
||||
app:setting_is_show_bottom_line="true"
|
||||
app:setting_is_show_content_image="true"
|
||||
app:setting_name="@string/community_settings_community_cover" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.component.SettingsLinearView
|
||||
android:id="@+id/community_introduction_lv"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="50dp"
|
||||
android:background="#FFFFFFFF"
|
||||
android:paddingStart="16dp"
|
||||
android:paddingEnd="16dp"
|
||||
app:setting_is_show_arrow="false"
|
||||
app:setting_content="@string/community_settings_not_set"
|
||||
app:setting_is_show_bottom_line="true"
|
||||
app:setting_name="@string/community_settings_community_introduction" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.component.SettingsLinearView
|
||||
android:id="@+id/community_id_lv"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="50dp"
|
||||
android:background="#FFFFFFFF"
|
||||
android:paddingStart="16dp"
|
||||
android:paddingEnd="16dp"
|
||||
app:setting_is_show_arrow="false"
|
||||
app:setting_is_show_bottom_line="true"
|
||||
app:setting_is_show_copy="true"
|
||||
app:setting_name="@string/community_settings_community_id" />
|
||||
|
||||
|
||||
<TextView
|
||||
android:id="@+id/community_settings_label"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="50dp"
|
||||
android:gravity="center_vertical"
|
||||
android:paddingStart="16dp"
|
||||
android:paddingEnd="16dp"
|
||||
android:textAlignment="viewStart"
|
||||
android:text="@string/community_community_settings"
|
||||
android:textColor="#000000"
|
||||
android:textSize="12sp" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.component.SettingsLinearView
|
||||
android:id="@+id/create_topic_category_lv"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="50dp"
|
||||
android:background="#FFFFFFFF"
|
||||
android:paddingStart="16dp"
|
||||
android:paddingEnd="16dp"
|
||||
app:setting_name="@string/community_create_topic_category" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.component.SettingsLinearView
|
||||
android:id="@+id/create_topic_lv"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="50dp"
|
||||
android:background="#FFFFFFFF"
|
||||
android:paddingStart="16dp"
|
||||
android:paddingEnd="16dp"
|
||||
app:setting_is_show_bottom_line="true"
|
||||
app:setting_name="@string/community_create_topic" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="50dp"
|
||||
android:gravity="center_vertical"
|
||||
android:paddingStart="16dp"
|
||||
android:paddingEnd="16dp"
|
||||
android:textAlignment="viewStart"
|
||||
android:text="@string/community_personal_settings"
|
||||
android:textColor="#000000"
|
||||
android:textSize="12sp" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.component.SettingsLinearView
|
||||
android:id="@+id/self_nick_name"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="50dp"
|
||||
android:background="#FFFFFFFF"
|
||||
android:paddingStart="16dp"
|
||||
android:paddingEnd="16dp"
|
||||
app:setting_is_show_bottom_line="true"
|
||||
app:setting_name="@string/community_self_nick_name" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/transfer_group_button"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="50dp"
|
||||
android:layout_marginTop="20dp"
|
||||
android:background="#FFFFFF"
|
||||
android:gravity="center"
|
||||
android:text="@string/community_transfer_owner"
|
||||
android:textColor="#FF584C"
|
||||
android:textSize="16sp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/disband_group_button"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="50dp"
|
||||
android:layout_marginTop="1dp"
|
||||
android:background="#FFFFFF"
|
||||
android:gravity="center"
|
||||
android:text="@string/community_disband_group"
|
||||
android:textColor="#FF584C"
|
||||
android:textSize="16sp" />
|
||||
|
||||
</LinearLayout>
|
||||
</ScrollView>
|
||||
</LinearLayout>
|
||||
@@ -0,0 +1,93 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:orientation="vertical">
|
||||
|
||||
<View
|
||||
android:id="@+id/top_line"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="1dp"
|
||||
android:background="#FFF6F6F6" />
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="#00FFFFFF">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentStart="true"
|
||||
android:layout_centerVertical="true"
|
||||
tools:text="name"
|
||||
android:textSize="16sp" />
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/content"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginStart="20dp"
|
||||
android:layout_toEndOf="@+id/name"
|
||||
android:background="#00FFFFFF">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:gravity="center_vertical"
|
||||
android:layout_marginStart="20dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/content_text"
|
||||
android:layout_weight="1"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:ellipsize="end"
|
||||
android:gravity="end"
|
||||
android:singleLine="true"
|
||||
android:textSize="16sp"
|
||||
tools:text="content" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.timcommon.component.RoundCornerImageView
|
||||
android:id="@+id/content_image"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:corner_radius="4dp"
|
||||
android:scaleType="centerCrop"
|
||||
tools:background="@android:drawable/ic_menu_gallery"/>
|
||||
|
||||
<com.tencent.qcloud.tuikit.tuicommunity.component.TextCopyView
|
||||
android:id="@+id/copy_button"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="12dp"
|
||||
android:text="@string/community_copy"
|
||||
app:bind_copy_text="@id/content_text"
|
||||
android:textColor="#FF006EFF"
|
||||
android:textSize="16sp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/right_arrow"
|
||||
android:layout_width="12dp"
|
||||
android:layout_height="12dp"
|
||||
android:layout_gravity="center"
|
||||
android:layout_marginStart="8dp"
|
||||
android:background="@drawable/common_arrow_right" />
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
<View
|
||||
android:id="@+id/bottom_line"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="1dp"
|
||||
android:background="#FFF6F6F6" />
|
||||
</LinearLayout>
|
||||
@@ -0,0 +1,106 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="@drawable/community_topic_list_item_bg"
|
||||
android:clipChildren="false"
|
||||
android:clipToPadding="false"
|
||||
android:paddingStart="18dp"
|
||||
android:paddingTop="10dp">
|
||||
|
||||
<com.tencent.qcloud.tuikit.timcommon.component.RoundCornerImageView
|
||||
android:id="@+id/topic_face"
|
||||
android:layout_width="24dp"
|
||||
android:layout_height="24dp"
|
||||
android:layout_alignParentStart="true"
|
||||
android:layout_alignParentTop="true"
|
||||
app:corner_radius="8dp" />
|
||||
|
||||
<com.tencent.qcloud.tuikit.timcommon.component.UnreadCountTextView
|
||||
android:id="@+id/topic_unread"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginEnd="10dp"
|
||||
android:gravity="center"
|
||||
android:includeFontPadding="false"
|
||||
android:textColor="#FFFFFF"
|
||||
android:textSize="8sp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/topic_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="20dp"
|
||||
android:gravity="center_vertical"
|
||||
android:layout_alignTop="@id/topic_face"
|
||||
android:layout_toEndOf="@id/topic_face"
|
||||
android:layout_marginStart="8dp"
|
||||
android:ellipsize="end"
|
||||
android:maxWidth="180dp"
|
||||
android:singleLine="true"
|
||||
android:textColor="@color/black_font_color"
|
||||
android:textSize="14sp" />
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/topic_title"
|
||||
android:layout_alignStart="@id/topic_title" >
|
||||
<TextView
|
||||
android:id="@+id/topic_at_all"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:ellipsize="end"
|
||||
android:singleLine="true"
|
||||
android:textColor="@color/read_dot_bg"
|
||||
android:textSize="13.44sp"
|
||||
android:visibility="gone"
|
||||
android:text="@string/ui_at_all"
|
||||
tools:visibility="visible"
|
||||
tools:text="[at all]"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/topic_at_me"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_toEndOf="@id/topic_at_all"
|
||||
android:ellipsize="end"
|
||||
android:singleLine="true"
|
||||
android:textColor="@color/read_dot_bg"
|
||||
android:textSize="13.44sp"
|
||||
android:visibility="gone"
|
||||
android:text="@string/ui_at_me"
|
||||
tools:visibility="visible"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/topic_draft"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_toEndOf="@id/topic_at_me"
|
||||
android:ellipsize="end"
|
||||
android:singleLine="true"
|
||||
android:textColor="@color/read_dot_bg"
|
||||
android:textSize="13.44sp"
|
||||
android:visibility="gone"
|
||||
android:text="@string/drafts"
|
||||
tools:visibility="visible" />
|
||||
<TextView
|
||||
android:id="@+id/topic_last_msg"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_toEndOf="@id/topic_draft"
|
||||
android:ellipsize="end"
|
||||
android:singleLine="true"
|
||||
android:textColor="#999999"
|
||||
android:textSize="12sp"
|
||||
tools:text="Message content"/>
|
||||
</RelativeLayout>
|
||||
|
||||
</RelativeLayout>
|
||||
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:gravity="center_vertical"
|
||||
android:background="@drawable/community_topic_list_item_bg"
|
||||
android:paddingStart="12dp"
|
||||
android:paddingBottom="10dp"
|
||||
android:paddingTop="10dp">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/indicator_image"
|
||||
android:layout_width="12dp"
|
||||
android:layout_height="12dp"
|
||||
android:padding="2dp"
|
||||
android:scaleType="centerInside"
|
||||
android:src="@drawable/community_list_collapse_icon"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/topic_category"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="8dp"
|
||||
android:ellipsize="end"
|
||||
android:singleLine="true"
|
||||
android:textColor="#666666"
|
||||
android:textSize="12sp" />
|
||||
|
||||
</LinearLayout>
|
||||
@@ -0,0 +1,116 @@
|
||||
<resources>
|
||||
<string name="community_create_community">إنشاء مجتمع</string>
|
||||
<string name="community_create_community_success">تم إنشاء المجتمع بنجاح</string>
|
||||
<string name="community_create_community_failed">فشل إنشاء المجتمع</string>
|
||||
<string name="community_join_community">الانضمام إلى مجتمع</string>
|
||||
<string name="community_join">الانضمام</string>
|
||||
<string name="community_joined">تم الانضمام</string>
|
||||
<string name="community_not_found_community">هذا المجتمع غير موجود</string>
|
||||
<string name="community_community_name">اسم المجتمع</string>
|
||||
<string name="community_community_introduction">نبذة عن المجتمع</string>
|
||||
<string name="community_select_cover">اختر الغلاف</string>
|
||||
<string name="community_select_face">اختر الصورة الرمزية</string>
|
||||
<string name="community_edit_tips_input">الرجاء إدخال</string>
|
||||
<string name="community_button_tips_select">الرجاء الاختيار</string>
|
||||
<string name="community_exit_community">الخروج من المجتمع</string>
|
||||
<string name="community_group_id_label">معرف المجتمع: </string>
|
||||
<string name="community_copy">نسخ</string>
|
||||
<string name="community_user_list">قائمة المستخدمين</string>
|
||||
<string name="community_share_community">مشاركة المجتمع</string>
|
||||
<string name="community_settings">الإعدادات</string>
|
||||
<string name="community_community_settings">إعدادات المجتمع</string>
|
||||
<string name="community_topic_settings">تفاصيل الموضوع</string>
|
||||
<string name="community_create_topic">إنشاء موضوع</string>
|
||||
<string name="community_create_topic_success">تم إنشاء الموضوع بنجاح</string>
|
||||
<string name="community_create_topic_failed">فشل إنشاء الموضوع</string>
|
||||
<string name="community_create_topic_category">إنشاء فئة</string>
|
||||
<string name="community_create_topic_category_success">تم إنشاء الفئة بنجاح</string>
|
||||
<string name="community_create_topic_category_failed">فشل إنشاء الفئة</string>
|
||||
<string name="community_delete_topic_category">حذف الفئة</string>
|
||||
<string name="community_topic_name">اسم الموضوع</string>
|
||||
<string name="community_topic_category">فئة الموضوع</string>
|
||||
<string name="community_topic_type">نوع الموضوع</string>
|
||||
<string name="community_self_nick_name">اسم العضو في المجتمع</string>
|
||||
<string name="community_personal_settings">الإعدادات الشخصية</string>
|
||||
<string name="community_community_information">معلومات المجتمع</string>
|
||||
<string name="community_settings_community_name">الاسم</string>
|
||||
<string name="community_settings_community_avatar">الصورة الرمزية</string>
|
||||
<string name="community_settings_community_cover">الغلاف</string>
|
||||
<string name="community_settings_community_introduction">نبذة عن المجتمع</string>
|
||||
<string name="community_settings_community_id">معرف المجتمع</string>
|
||||
<string name="community_settings_not_set">غير محدد</string>
|
||||
<string name="community_transfer_owner">نقل ملكية المجتمع</string>
|
||||
<string name="community_disband_group">حل المجتمع</string>
|
||||
|
||||
<string name="community_no_category">لا يوجد فئة</string>
|
||||
|
||||
<string name="community_cancel">إلغاء</string>
|
||||
<string name="community_search_community_id">البحث عن معرف المجتمع</string>
|
||||
<string name="community_search_community">البحث عن المجتمع</string>
|
||||
<string name="community_owner">المالك</string>
|
||||
|
||||
<string name="community_select_category">اختر الفئة</string>
|
||||
<string name="community_invite">دعوة الأعضاء</string>
|
||||
<string name="community_remove_fail_tip">فشل إزالة العضو</string>
|
||||
<string name="community_remove_member">إزالة العضو</string>
|
||||
<string name="community_add_group_member">إضافة الأعضاء</string>
|
||||
<string name="community_remove_group_member">إزالة الأعضاء</string>
|
||||
|
||||
<string name="community_topic_type_text_title">موضوع نصي</string>
|
||||
<string name="community_topic_type_text_desc">يدعم التفاعل بين الرسائل النصية والرموز التعبيرية والصور ومقاطع الفيديو وغيرها، وهو مناسب للدردشة ونشر الأنشطة / الإعلانات وما إلى ذلك</string>
|
||||
<string name="community_topic_type_video_title">موضوع صوتي / فيديو</string>
|
||||
<string name="community_topic_type_video_title_coming">موضوع صوتي / فيديو (قريبًا)</string>
|
||||
<string name="community_topic_type_video_desc">يدعم الاتصال الصوتي والفيديو في الوقت الحقيقي، وهو مناسب للغناء والدردشة ولعب الألعاب وما إلى ذلك</string>
|
||||
<string name="community_topic_type_live_title">موضوع مباشر</string>
|
||||
<string name="community_topic_type_live_title_coming">موضوع مباشر (قريبًا)</string>
|
||||
<string name="community_topic_type_live_desc">يدعم الإعجاب بالبث المباشر والتفاعل مع الرسائل النصية المتحركة، وهو مناسب للبث المباشر للأحداث الرياضية والتجارة الإلكترونية وما إلى ذلك</string>
|
||||
<string name="community_delete_topic">حذف الموضوع</string>
|
||||
<string name="community_delete_topic_tip">هل تريد بالتأكيد حذف الموضوع؟</string>
|
||||
<string name="community_choose_avatar">اختر الصورة الرمزية</string>
|
||||
<string name="community_over_limit_tip">يمكنك اختيار حتى %d فقط.</string>
|
||||
<string name="community_default_category_announcement">إعلان</string>
|
||||
<string name="community_default_category_communication">منطقة التواصل</string>
|
||||
<string name="community_topic_important_notice">إشعار مهم</string>
|
||||
<string name="community_topic_newbie_report">تقرير المبتدئين</string>
|
||||
<string name="community_topic_chat_hall">قاعة الدردشة</string>
|
||||
<string name="community_to_be_experienced">قيد التجربة</string>
|
||||
<string name="community_completed">تم الانتهاء</string>
|
||||
<string name="community_recommended_experience">تجربة الوظائف الموصى بها</string>
|
||||
<string name="community_quick_integration">تكامل سريع في دقيقة واحدة باستخدام مكونات واجهة المستخدم</string>
|
||||
<string name="community_experience_send_message">إرسال رسالة في الموضوع</string>
|
||||
<string name="community_experience_reply_message">الرد على رسالة في الموضوع</string>
|
||||
<string name="community_experience_create_community">إنشاء مجتمع جديد</string>
|
||||
<string name="community_experience_add_community">إضافة مجتمع جديد</string>
|
||||
<string name="community_experience_disband_community">حل مجتمع</string>
|
||||
<string name="community_experience_create_topic">إنشاء موضوع جديد</string>
|
||||
<string name="community_experience_delete_topic">حذف موضوع</string>
|
||||
<string name="community_experience_more_demos">تجربة المزيد من الأمثلة التوضيحية</string>
|
||||
|
||||
<string name="community_integration_download_code">تنزيل مصدر TUIKit</string>
|
||||
<string name="community_integration_login">تسجيل الدخول إلى المكونات</string>
|
||||
<string name="community_integration_create_viewPager">إنشاء ViewPager</string>
|
||||
<string name="community_integration_build_fragment">بناء جوهر Fragment</string>
|
||||
<string name="community_integration_build_audio_video_call">بناء وظيفة المكالمات الصوتية والفيديو</string>
|
||||
|
||||
<string name="community_network_connect_failed">خطأ في الشبكة، يرجى التحقق من إعدادات الشبكة</string>
|
||||
<string name="community_network_connecting">جاري الاتصال بالشبكة...</string>
|
||||
|
||||
<string name="community_integration_download_code_link">https://cloud.tencent.com/document/product/269/37059#module-.E6.BA.90.E7.A0.81.E9.9B.86.E6.88.90</string>
|
||||
<string name="community_integration_login_link">https://cloud.tencent.com/document/product/269/37059#.E6.AD.A5.E9.AA.A4.E4.B8.80.EF.BC.9A.E7.BB.84.E4.BB.B6.E7.99.BB.E5.BD.95</string>
|
||||
<string name="community_integration_create_viewPager_link">https://cloud.tencent.com/document/product/269/37059#.E6.AD.A5.E9.AA.A4.E4.BA.8C.EF.BC.9A.E5.88.9B.E5.BB.BA-viewpager</string>
|
||||
<string name="community_integration_build_fragment_link">https://cloud.tencent.com/document/product/269/37059#.E6.AD.A5.E9.AA.A4.E4.B8.89.EF.BC.9A.E6.9E.84.E5.BB.BA.E6.A0.B8.E5.BF.83-fragment</string>
|
||||
<string name="community_integration_build_audio_video_call_link">https://cloud.tencent.com/document/product/269/37059#.E6.AD.A5.E9.AA.A4.E5.9B.9B.EF.BC.9A.E6.9E.84.E5.BB.BA.E9.9F.B3.E8.A7.86.E9.A2.91.E9.80.9A.E8.AF.9D.E5.8A.9F.E8.83.BD</string>
|
||||
|
||||
<string name="community_copy_success_tip">تم النسخ بنجاح</string>
|
||||
<string name="community_coming_soon">قريبًا</string>
|
||||
<string name="community_accept">موافق</string>
|
||||
<string name="community_refuse">رفض</string>
|
||||
|
||||
<string name="ui_at_all">[@الجميع]</string>
|
||||
<string name="ui_at_me">[شخص ما @ لي]</string>
|
||||
<string name="ui_at_all_me">[@الجميع][شخص ما @ لي]</string>
|
||||
<string name="drafts">[مسودة]</string>
|
||||
|
||||
<string name="clear_message">مسح سجل الدردشة</string>
|
||||
<string name="clear_message_tip">هل تريد بالتأكيد مسح سجل الدردشة؟</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,112 @@
|
||||
<resources>
|
||||
<string name="community_create_community">創建一個社群</string>
|
||||
<string name="community_create_community_success">創建社群成功</string>
|
||||
<string name="community_create_community_failed">創建社群失敗</string>
|
||||
<string name="community_join_community">加入一個社群</string>
|
||||
<string name="community_join">加入</string>
|
||||
<string name="community_joined">已加入</string>
|
||||
<string name="community_not_found_community">該社群不存在</string>
|
||||
<string name="community_community_name">社群名稱</string>
|
||||
<string name="community_community_introduction">社群簡介</string>
|
||||
<string name="community_select_cover">選擇封面</string>
|
||||
<string name="community_select_face">選擇頭像</string>
|
||||
<string name="community_edit_tips_input">請輸入</string>
|
||||
<string name="community_button_tips_select">請選擇</string>
|
||||
<string name="community_exit_community">退出社群</string>
|
||||
<string name="community_group_id_label">社群ID: </string>
|
||||
<string name="community_copy">複製</string>
|
||||
<string name="community_user_list">用戶列表</string>
|
||||
<string name="community_share_community">分享社群</string>
|
||||
<string name="community_settings">設置</string>
|
||||
<string name="community_community_settings">社群設置</string>
|
||||
<string name="community_topic_settings">話題詳情</string>
|
||||
<string name="community_create_topic">創建話題</string>
|
||||
<string name="community_create_topic_success">創建話題成功</string>
|
||||
<string name="community_create_topic_failed">創建話題失敗</string>
|
||||
<string name="community_create_topic_category">創建分組</string>
|
||||
<string name="community_create_topic_category_success">創建分組成功</string>
|
||||
<string name="community_create_topic_category_failed">創建分組失敗</string>
|
||||
<string name="community_delete_topic_category">刪除分組</string>
|
||||
<string name="community_topic_name">話題名稱</string>
|
||||
<string name="community_topic_category">話題分組</string>
|
||||
<string name="community_topic_type">話題類型</string>
|
||||
<string name="community_self_nick_name">我的群暱稱</string>
|
||||
<string name="community_personal_settings">個人設置</string>
|
||||
<string name="community_community_information">社群信息</string>
|
||||
<string name="community_settings_community_name">名稱</string>
|
||||
<string name="community_settings_community_avatar">頭像</string>
|
||||
<string name="community_settings_community_cover">封面</string>
|
||||
<string name="community_settings_community_introduction">簡介</string>
|
||||
<string name="community_settings_community_id">社群ID</string>
|
||||
<string name="community_settings_not_set">未設置</string>
|
||||
<string name="community_transfer_owner">轉讓群主</string>
|
||||
<string name="community_disband_group">解散社群</string>
|
||||
|
||||
<string name="community_no_category">無分組</string>
|
||||
<string name="community_cancel">取消</string>
|
||||
<string name="community_search_community_id">搜索社群ID</string>
|
||||
<string name="community_search_community">搜索社群</string>
|
||||
<string name="community_owner">群主</string>
|
||||
<string name="community_select_category">選擇分組</string>
|
||||
<string name="community_invite">邀請成員</string>
|
||||
<string name="community_remove_fail_tip">移除成員失敗</string>
|
||||
<string name="community_remove_member">移出社群</string>
|
||||
<string name="community_add_group_member">添加成員</string>
|
||||
<string name="community_remove_group_member">移除成員</string>
|
||||
<string name="community_topic_type_text_title">文字話題</string>
|
||||
<string name="community_topic_type_text_desc">支持文字、表情、圖片、視頻等類型消息收發互動,適用於聊天、發布活動/公告等場景</string>
|
||||
<string name="community_topic_type_video_title">語音/視頻話題</string>
|
||||
<string name="community_topic_type_video_title_coming">語音/視頻話題(敬請期待)</string>
|
||||
<string name="community_topic_type_video_desc">支持實時語音連麥、視頻互動,適用於唱歌聊天、遊戲開黑等場景</string>
|
||||
<string name="community_topic_type_live_title">直播話題</string>
|
||||
<string name="community_topic_type_live_title_coming">直播話題(敬請期待)</string>
|
||||
<string name="community_topic_type_live_desc">支持直播點贊、互動彈幕,適用於賽事直播、電商帶貨等場景</string>
|
||||
<string name="community_delete_topic">刪除話題</string>
|
||||
<string name="community_delete_topic_tip">確認刪除話題</string>
|
||||
<string name="community_choose_avatar">選擇頭像</string>
|
||||
<string name="community_over_limit_tip">最多只能選擇%d個。</string>
|
||||
<string name="community_default_category_announcement">公告</string>
|
||||
<string name="community_default_category_communication">交流區</string>
|
||||
<string name="community_topic_important_notice">重要通知</string>
|
||||
<string name="community_topic_newbie_report">萌新報道</string>
|
||||
<string name="community_topic_chat_hall">閒聊大廳</string>
|
||||
<string name="community_to_be_experienced">待體驗</string>
|
||||
<string name="community_completed">已完成</string>
|
||||
<string name="community_recommended_experience">建議體驗功能</string>
|
||||
<string name="community_quick_integration">用UI組件 1 分鐘快速集成</string>
|
||||
<string name="community_experience_send_message">在話題中發送一條消息</string>
|
||||
<string name="community_experience_reply_message">在話題中回復一條消息</string>
|
||||
<string name="community_experience_create_community">創建一個新社群</string>
|
||||
<string name="community_experience_add_community">添加一個新社群</string>
|
||||
<string name="community_experience_disband_community">解散一個社群</string>
|
||||
<string name="community_experience_create_topic">創建一個話題</string>
|
||||
<string name="community_experience_delete_topic">刪除一個話題</string>
|
||||
<string name="community_experience_more_demos">體驗更多Demo</string>
|
||||
<string name="community_integration_download_code">下載 TUIKit 源碼</string>
|
||||
<string name="community_integration_login">組件登錄</string>
|
||||
<string name="community_integration_create_viewPager">創建 ViewPager</string>
|
||||
<string name="community_integration_build_fragment">構建核心 Fragment</string>
|
||||
<string name="community_integration_build_audio_video_call">構建音視頻通話功能</string>
|
||||
|
||||
<string name="community_network_connect_failed">網絡異常,請檢查網絡設置</string>
|
||||
<string name="community_network_connecting">網絡連接中...</string>
|
||||
|
||||
<string name="community_integration_download_code_link">https://cloud.tencent.com/document/product/269/37059#module-.E6.BA.90.E7.A0.81.E9.9B.86.E6.88.90</string>
|
||||
<string name="community_integration_login_link">https://cloud.tencent.com/document/product/269/37059#.E6.AD.A5.E9.AA.A4.E4.B8.80.EF.BC.9A.E7.BB.84.E4.BB.B6.E7.99.BB.E5.BD.95</string>
|
||||
<string name="community_integration_create_viewPager_link">https://cloud.tencent.com/document/product/269/37059#.E6.AD.A5.E9.AA.A4.E4.BA.8C.EF.BC.9A.E5.88.9B.E5.BB.BA-viewpager</string>
|
||||
<string name="community_integration_build_fragment_link">https://cloud.tencent.com/document/product/269/37059#.E6.AD.A5.E9.AA.A4.E4.B8.89.EF.BC.9A.E6.9E.84.E5.BB.BA.E6.A0.B8.E5.BF.83-fragment</string>
|
||||
<string name="community_integration_build_audio_video_call_link">https://cloud.tencent.com/document/product/269/37059#.E6.AD.A5.E9.AA.A4.E5.9B.9B.EF.BC.9A.E6.9E.84.E5.BB.BA.E9.9F.B3.E8.A7.86.E9.A2.91.E9.80.9A.E8.AF.9D.E5.8A.9F.E8.83.BD</string>
|
||||
|
||||
<string name="community_copy_success_tip">複製成功</string>
|
||||
<string name="community_coming_soon">敬請期待</string>
|
||||
<string name="community_accept">同意</string>
|
||||
<string name="community_refuse">拒絕</string>
|
||||
|
||||
<string name="ui_at_all">[@所有人]</string>
|
||||
<string name="ui_at_me">[有人@我]</string>
|
||||
<string name="ui_at_all_me">[@所有人][有人@我]</string>
|
||||
<string name="drafts">[草稿]</string>
|
||||
|
||||
<string name="clear_message">清除聊天記錄</string>
|
||||
<string name="clear_message_tip">確認清除聊天記錄?</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,118 @@
|
||||
<resources>
|
||||
<string name="community_create_community">创建一个社群</string>
|
||||
<string name="community_create_community_success">创建社群成功</string>
|
||||
<string name="community_create_community_failed">创建社群失败</string>
|
||||
<string name="community_join_community">加入一个社群</string>
|
||||
<string name="community_join">加入</string>
|
||||
<string name="community_joined">已加入</string>
|
||||
<string name="community_not_found_community">该社群不存在</string>
|
||||
<string name="community_community_name">社群名称</string>
|
||||
<string name="community_community_introduction">社群简介</string>
|
||||
<string name="community_select_cover">选择封面</string>
|
||||
<string name="community_select_face">选择头像</string>
|
||||
<string name="community_edit_tips_input">请输入</string>
|
||||
<string name="community_button_tips_select">请选择</string>
|
||||
<string name="community_exit_community">退出社群</string>
|
||||
<string name="community_group_id_label">社群ID: </string>
|
||||
<string name="community_copy">复制</string>
|
||||
<string name="community_user_list">用户列表</string>
|
||||
<string name="community_share_community">分享社群</string>
|
||||
<string name="community_settings">设置</string>
|
||||
<string name="community_community_settings">社群设置</string>
|
||||
<string name="community_topic_settings">话题详情</string>
|
||||
<string name="community_create_topic">创建话题</string>
|
||||
<string name="community_create_topic_success">创建话题成功</string>
|
||||
<string name="community_create_topic_failed">创建话题失败</string>
|
||||
<string name="community_create_topic_category">创建分组</string>
|
||||
<string name="community_create_topic_category_success">创建分组成功</string>
|
||||
<string name="community_create_topic_category_failed">创建分组失败</string>
|
||||
<string name="community_delete_topic_category">删除分组</string>
|
||||
<string name="community_topic_name">话题名称</string>
|
||||
<string name="community_topic_category">话题分组</string>
|
||||
<string name="community_topic_type">话题类型</string>
|
||||
<string name="community_self_nick_name">我的群昵称</string>
|
||||
<string name="community_personal_settings">个人设置</string>
|
||||
<string name="community_community_information">社群信息</string>
|
||||
<string name="community_settings_community_name">名称</string>
|
||||
<string name="community_settings_community_avatar">头像</string>
|
||||
<string name="community_settings_community_cover">封面</string>
|
||||
<string name="community_settings_community_introduction">简介</string>
|
||||
<string name="community_settings_community_id">社群ID</string>
|
||||
<string name="community_settings_not_set">未设置</string>
|
||||
<string name="community_transfer_owner">转让群主</string>
|
||||
<string name="community_disband_group">解散社群</string>
|
||||
|
||||
<string name="community_no_category">无分组</string>
|
||||
|
||||
<string name="community_cancel">取消</string>
|
||||
<string name="community_search_community_id">搜索社群ID</string>
|
||||
<string name="community_search_community">搜索社群</string>
|
||||
<string name="community_owner">群主</string>
|
||||
|
||||
<string name="community_select_category">选择分组</string>
|
||||
<string name="community_invite">邀请成员</string>
|
||||
<string name="community_remove_fail_tip">移除成员失败</string>
|
||||
<string name="community_remove_member">移出社群</string>
|
||||
<string name="community_add_group_member">添加成员</string>
|
||||
<string name="community_remove_group_member">移除成员</string>
|
||||
|
||||
<string name="community_topic_type_text_title">文字话题</string>
|
||||
<string name="community_topic_type_text_desc">支持文字、表情、图片、视频等类型消息收发互动,适用于聊天、发布活动/公告等场景</string>
|
||||
<string name="community_topic_type_video_title">语音/视频话题</string>
|
||||
<string name="community_topic_type_video_title_coming">语音/视频话题(敬请期待)</string>
|
||||
<string name="community_topic_type_video_desc">支持实时语音连麦、视频互动,适用于唱歌聊天、游戏开黑等场景</string>
|
||||
<string name="community_topic_type_live_title">直播话题</string>
|
||||
<string name="community_topic_type_live_title_coming">直播话题(敬请期待)</string>
|
||||
<string name="community_topic_type_live_desc">支持直播点赞、互动弹幕,适用于赛事直播、电商带货等场景</string>
|
||||
<string name="community_delete_topic">删除话题</string>
|
||||
<string name="community_delete_topic_tip">确认删除话题</string>
|
||||
<string name="community_choose_avatar">选择头像</string>
|
||||
<string name="community_over_limit_tip">最多只能选择%d个。</string>
|
||||
|
||||
<string name="community_default_category_announcement">公告</string>
|
||||
<string name="community_default_category_communication">交流区</string>
|
||||
<string name="community_topic_important_notice">重要通知</string>
|
||||
<string name="community_topic_newbie_report">萌新报道</string>
|
||||
<string name="community_topic_chat_hall">闲聊大厅</string>
|
||||
|
||||
<string name="community_to_be_experienced">待体验</string>
|
||||
<string name="community_completed">已完成</string>
|
||||
<string name="community_recommended_experience">建议体验功能</string>
|
||||
<string name="community_quick_integration">用UI组件 1 分钟快速集成</string>
|
||||
<string name="community_experience_send_message">在话题中发送一条消息</string>
|
||||
<string name="community_experience_reply_message">在话题中回复一条消息</string>
|
||||
<string name="community_experience_create_community">创建一个新社群</string>
|
||||
<string name="community_experience_add_community">添加一个新社群</string>
|
||||
<string name="community_experience_disband_community">解散一个社群</string>
|
||||
<string name="community_experience_create_topic">创建一个话题</string>
|
||||
<string name="community_experience_delete_topic">删除一个话题</string>
|
||||
<string name="community_experience_more_demos">体验更多Demo</string>
|
||||
|
||||
<string name="community_integration_download_code">下载 TUIKit 源码</string>
|
||||
<string name="community_integration_login">组件登录</string>
|
||||
<string name="community_integration_create_viewPager">创建 ViewPager</string>
|
||||
<string name="community_integration_build_fragment">构建核心 Fragment</string>
|
||||
<string name="community_integration_build_audio_video_call">构建音视频通话功能</string>
|
||||
|
||||
<string name="community_network_connect_failed">网络异常,请检查网络设置</string>
|
||||
<string name="community_network_connecting">网络连接中...</string>
|
||||
|
||||
<string name="community_integration_download_code_link">https://cloud.tencent.com/document/product/269/37059#module-.E6.BA.90.E7.A0.81.E9.9B.86.E6.88.90</string>
|
||||
<string name="community_integration_login_link">https://cloud.tencent.com/document/product/269/37059#.E6.AD.A5.E9.AA.A4.E4.B8.80.EF.BC.9A.E7.BB.84.E4.BB.B6.E7.99.BB.E5.BD.95</string>
|
||||
<string name="community_integration_create_viewPager_link">https://cloud.tencent.com/document/product/269/37059#.E6.AD.A5.E9.AA.A4.E4.BA.8C.EF.BC.9A.E5.88.9B.E5.BB.BA-viewpager</string>
|
||||
<string name="community_integration_build_fragment_link">https://cloud.tencent.com/document/product/269/37059#.E6.AD.A5.E9.AA.A4.E4.B8.89.EF.BC.9A.E6.9E.84.E5.BB.BA.E6.A0.B8.E5.BF.83-fragment</string>
|
||||
<string name="community_integration_build_audio_video_call_link">https://cloud.tencent.com/document/product/269/37059#.E6.AD.A5.E9.AA.A4.E5.9B.9B.EF.BC.9A.E6.9E.84.E5.BB.BA.E9.9F.B3.E8.A7.86.E9.A2.91.E9.80.9A.E8.AF.9D.E5.8A.9F.E8.83.BD</string>
|
||||
|
||||
<string name="community_copy_success_tip">复制成功</string>
|
||||
<string name="community_coming_soon">敬请期待</string>
|
||||
<string name="community_accept">同意</string>
|
||||
<string name="community_refuse">拒绝</string>
|
||||
|
||||
<string name="ui_at_all">[@所有人]</string>
|
||||
<string name="ui_at_me">[有人@我]</string>
|
||||
<string name="ui_at_all_me">[@所有人][有人@我]</string>
|
||||
<string name="drafts">[草稿]</string>
|
||||
|
||||
<string name="clear_message">清除聊天记录</string>
|
||||
<string name="clear_message_tip">确认清除聊天记录?</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,50 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
|
||||
<declare-styleable name="SelectTextButton">
|
||||
<attr name="button_radius" format="dimension" />
|
||||
<attr name="border_width" format="dimension" />
|
||||
<attr name="button_left_top_radius" format="dimension" />
|
||||
<attr name="button_right_top_radius" format="dimension" />
|
||||
<attr name="button_right_bottom_radius" format="dimension" />
|
||||
<attr name="button_left_bottom_radius" format="dimension" />
|
||||
<attr name="color" format="color" />
|
||||
</declare-styleable>
|
||||
|
||||
<declare-styleable name="TextCountView">
|
||||
<attr name="limit_count" format="integer"/>
|
||||
<attr name="bind_edit_text" format="reference"/>
|
||||
</declare-styleable>
|
||||
|
||||
<declare-styleable name="TextCopyView">
|
||||
<attr name="bind_copy_text" format="reference"/>
|
||||
</declare-styleable>
|
||||
|
||||
<declare-styleable name="SettingsLinearView">
|
||||
<attr name="setting_name" format="string"/>
|
||||
<attr name="setting_name_color" format="string|reference"/>
|
||||
<attr name="setting_content" format="string"/>
|
||||
<attr name="setting_content_color" format="color|reference"/>
|
||||
<attr name="setting_is_show_top_line" format="boolean"/>
|
||||
<attr name="setting_is_show_bottom_line" format="boolean"/>
|
||||
<attr name="setting_is_show_copy" format="boolean"/>
|
||||
<attr name="setting_is_show_arrow" format="boolean"/>
|
||||
<attr name="setting_is_show_content_text" format="boolean"/>
|
||||
<attr name="setting_is_show_content_image" format="boolean"/>
|
||||
<attr name="setting_content_image_width" format="dimension"/>
|
||||
<attr name="setting_content_image_height" format="dimension"/>
|
||||
|
||||
</declare-styleable>
|
||||
|
||||
|
||||
|
||||
<declare-styleable name="CommunityExperienceView">
|
||||
<attr name="content_text" format="string|reference"/>
|
||||
</declare-styleable>
|
||||
|
||||
<declare-styleable name="CommunityIndexLinkView">
|
||||
<attr name="content_index" format="integer"/>
|
||||
<attr name="content_link_text" format="string|reference"/>
|
||||
<attr name="content_link" format="string|reference"/>
|
||||
</declare-styleable>
|
||||
</resources>
|
||||
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="community_setting_linear_name_default_color">#FF666666</color>
|
||||
<color name="community_setting_linear_content_default_color">#FF000000</color>
|
||||
<color name="community_setting_linear_content_disable_color">#FF999999</color>
|
||||
<color name="community_more_introduction_disable_color">#333333</color>
|
||||
|
||||
<color name="community_banner_selected_color">#FFFFFFFF</color>
|
||||
<color name="community_banner_normal_color">#66FFFFFF</color>
|
||||
|
||||
<color name="community_list_selected_color">#19006EFF</color>
|
||||
<color name="community_list_normal_color">#FFFFFFFF</color>
|
||||
<color name="community_btn_positive">#00a4ff</color>
|
||||
<color name="community_btn_positive_hover">#006eff</color>
|
||||
|
||||
<color name="community_btn_negative">#ffffff</color>
|
||||
<color name="community_btn_negative_hover">#cc3428</color>
|
||||
|
||||
<color name="community_text_color_gray">#696969</color>
|
||||
</resources>
|
||||
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<dimen name="community_profile_height">69.12dp</dimen>
|
||||
<dimen name="community_profile_item_height">46.08dp</dimen>
|
||||
<dimen name="community_profile_face_size">46.08dp</dimen>
|
||||
<dimen name="community_profile_group_name_size">17.28sp</dimen>
|
||||
<dimen name="community_profile_group_id_size">12.48dp</dimen>
|
||||
<dimen name="community_profile_face_margin_left">15.36dp</dimen>
|
||||
<dimen name="community_profile_face_margin_right">15.36dp</dimen>
|
||||
<dimen name="community_profile_face_margin_top">11.5dp</dimen>
|
||||
|
||||
<dimen name="community_profile_member_grid_padding_left_right">19.2dp</dimen>
|
||||
<dimen name="community_profile_member_grid_padding_top">11.52dp</dimen>
|
||||
<dimen name="community_profile_member_item_width">48dp</dimen>
|
||||
<dimen name="community_profile_member_item_name_size">9.6sp</dimen>
|
||||
<color name="community_profile_member_name_text_color">#888888</color>
|
||||
|
||||
</resources>
|
||||
@@ -0,0 +1,119 @@
|
||||
<resources>
|
||||
<string name="community_create_community">Create a community</string>
|
||||
<string name="community_create_community_success">Create community success</string>
|
||||
<string name="community_create_community_failed">Create community failed</string>
|
||||
<string name="community_join_community">Join a community</string>
|
||||
<string name="community_join">Join</string>
|
||||
<string name="community_joined">Joined</string>
|
||||
<string name="community_not_found_community">Not found the community</string>
|
||||
<string name="community_community_name">Community name</string>
|
||||
<string name="community_community_introduction">Community introduction</string>
|
||||
<string name="community_select_cover">Select cover</string>
|
||||
<string name="community_select_face">Select face</string>
|
||||
<string name="community_edit_tips_input">Please input</string>
|
||||
<string name="community_button_tips_select">Please select</string>
|
||||
<string name="community_exit_community">Exit community</string>
|
||||
<string name="community_group_id_label">Community ID: </string>
|
||||
<string name="community_copy">Copy</string>
|
||||
<string name="community_user_list">User list</string>
|
||||
<string name="community_share_community">Share community</string>
|
||||
<string name="community_settings">Settings</string>
|
||||
<string name="community_community_settings">Community settings</string>
|
||||
<string name="community_topic_settings">Topic detail</string>
|
||||
<string name="community_create_topic">Create topic</string>
|
||||
<string name="community_create_topic_success">Create topic success</string>
|
||||
<string name="community_create_topic_failed">Create topic failed</string>
|
||||
<string name="community_create_topic_category">Create topic category</string>
|
||||
<string name="community_create_topic_category_success">Create topic category success</string>
|
||||
<string name="community_create_topic_category_failed">Create topic category failed</string>
|
||||
<string name="community_delete_topic_category">Delete topic category</string>
|
||||
<string name="community_self_nick_name">My group nickname</string>
|
||||
<string name="community_personal_settings">Personal settings</string>
|
||||
<string name="community_community_information">Community information</string>
|
||||
<string name="community_settings_community_name">Name</string>
|
||||
<string name="community_settings_community_avatar">Avatar</string>
|
||||
<string name="community_settings_community_cover">Cover</string>
|
||||
<string name="community_settings_community_introduction">Introduction</string>
|
||||
<string name="community_settings_community_id">Community group ID</string>
|
||||
<string name="community_settings_not_set">Not set</string>
|
||||
<string name="community_transfer_owner">Transfer group owner</string>
|
||||
<string name="community_disband_group">Disband the group</string>
|
||||
<string name="community_no_category">No Category</string>
|
||||
|
||||
<string name="community_cancel">Cancel</string>
|
||||
<string name="community_search_community_id">Input community ID</string>
|
||||
<string name="community_search_community">Search community</string>
|
||||
<string name="community_owner">Owner</string>
|
||||
|
||||
<string name="community_topic_name">Topic name</string>
|
||||
<string name="community_topic_category">Topic category</string>
|
||||
<string name="community_topic_type">Topic type</string>
|
||||
|
||||
<string name="community_select_category">Select category</string>
|
||||
<string name="community_invite">Invite</string>
|
||||
<string name="community_remove_fail_tip">Remove failed</string>
|
||||
<string name="community_remove_member">Remove</string>
|
||||
<string name="community_add_group_member">Add member</string>
|
||||
<string name="community_remove_group_member">Remove member</string>
|
||||
|
||||
<string name="community_topic_type_text_title">Text Topic</string>
|
||||
<string name="community_topic_type_text_desc">Support text, emoticon, picture, video and other types of message sending and receiving interaction, suitable for chatting, publishing activities/announcements and other scenarios</string>
|
||||
<string name="community_topic_type_video_title">Voice/Video Topic</string>
|
||||
<string name="community_topic_type_video_title_coming">Voice/Video Topic (Coming soon)</string>
|
||||
<string name="community_topic_type_video_desc">Support real-time voice connection to microphone, video interaction, suitable for singing and chatting, game blackout and other scenarios</string>
|
||||
<string name="community_topic_type_live_title">Live Topic</string>
|
||||
<string name="community_topic_type_live_title_coming">Live Topic (Coming soon)</string>
|
||||
<string name="community_topic_type_live_desc">Support live broadcast likes, interactive barrage, suitable for live events, e-commerce delivery and other scenarios</string>
|
||||
<string name="community_delete_topic">Delete topic</string>
|
||||
<string name="community_delete_topic_tip">Confirm to delete the topic</string>
|
||||
<string name="community_choose_avatar">Choose Avatar</string>
|
||||
<string name="community_over_limit_tip">Max allowed: %d</string>
|
||||
|
||||
<string name="community_to_be_experienced">To do</string>
|
||||
<string name="community_completed">Completed</string>
|
||||
<string name="community_recommended_experience">Recommended experience</string>
|
||||
<string name="community_quick_integration">Quick integration with UI components in 1 minute</string>
|
||||
<string name="community_experience_send_message">Send a message in a topic</string>
|
||||
<string name="community_experience_reply_message">Reply a message in a topic</string>
|
||||
<string name="community_experience_create_community">Create a new Community</string>
|
||||
<string name="community_experience_add_community">Add a new Community</string>
|
||||
<string name="community_experience_disband_community">Disband a new Community</string>
|
||||
<string name="community_experience_create_topic">Create a topic</string>
|
||||
<string name="community_experience_delete_topic">Delete a topic</string>
|
||||
<string name="community_experience_more_demos">Experience more demos</string>
|
||||
|
||||
<string name="community_default_category_announcement">Announcement</string>
|
||||
<string name="community_default_category_communication">Communication</string>
|
||||
<string name="community_topic_important_notice">Important notice</string>
|
||||
<string name="community_topic_newbie_report">Newbie report</string>
|
||||
<string name="community_topic_chat_hall">Chat hall</string>
|
||||
|
||||
<string name="community_integration_download_code">Download the source code of TUIKit</string>
|
||||
<string name="community_integration_login">Log in to TUIKit</string>
|
||||
<string name="community_integration_create_viewPager">Create viewPager</string>
|
||||
<string name="community_integration_build_fragment">Build the core fragment</string>
|
||||
<string name="community_integration_build_audio_video_call">Build the audio/video call feature</string>
|
||||
|
||||
<string name="community_network_connect_failed">The network is abnormal, please check the network settings</string>
|
||||
<string name="community_network_connecting">Network connecting. . .</string>
|
||||
|
||||
<string name="community_integration_download_code_link">https://www.tencentcloud.com/document/product/1047/34286#integrating-module-source-code</string>
|
||||
<string name="community_integration_login_link">https://www.tencentcloud.com/document/product/1047/34286#step-1.-log-in-to-tuikit</string>
|
||||
<string name="community_integration_create_viewPager_link">https://www.tencentcloud.com/document/product/1047/34286#step-2.-create-viewpager</string>
|
||||
<string name="community_integration_build_fragment_link">https://www.tencentcloud.com/document/product/1047/34286#step-3.-build-the-core-fragment</string>
|
||||
<string name="community_integration_build_audio_video_call_link">https://www.tencentcloud.com/document/product/1047/34286#step-4.-build-the-audio.2Fvideo-call-feature</string>
|
||||
|
||||
<string name="community_copy_success_tip">Copy Success</string>
|
||||
<string name="community_coming_soon">coming_soon</string>
|
||||
|
||||
<string name="community_accept">Agree</string>
|
||||
<string name="community_refuse">Decline</string>
|
||||
|
||||
<string name="ui_at_all">[@All]</string>
|
||||
<string name="ui_at_me">[Someone @ me]</string>
|
||||
<string name="ui_at_all_me">[@All][Someone @ me]</string>
|
||||
<string name="drafts">[Drafts]</string>
|
||||
|
||||
<string name="clear_message">Clear Chat History</string>
|
||||
<string name="clear_message_tip">Are you sure you want to clear the chat history?</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<style name="BottomPopupAnimation">
|
||||
<item name="android:windowEnterAnimation">@anim/community_pop_menu_in_anim</item>
|
||||
<item name="android:windowExitAnimation">@anim/community_pop_menu_out_anim</item>
|
||||
</style>
|
||||
|
||||
<style name="CommunityBottomSelectSheet" parent="@android:style/Theme.Dialog">
|
||||
<item name="android:windowBackground">@android:color/transparent</item>
|
||||
<item name="android:background">@android:color/transparent</item>
|
||||
<item name="android:windowContentOverlay">@null</item>
|
||||
<item name="android:windowIsFloating">true</item>
|
||||
<item name="android:windowFrame">@null</item>
|
||||
<item name="android:backgroundDimEnabled">true</item>
|
||||
<item name="android:windowNoTitle">true</item>
|
||||
<item name="android:windowIsTranslucent">true</item>
|
||||
</style>
|
||||
|
||||
<style name="CommunityBottomSelectSheet_Anim">
|
||||
<item name="android:windowExitAnimation">@anim/community_bottom_select_sheet_exit</item>
|
||||
<item name="android:windowEnterAnimation">@anim/community_bottom_select_sheet_enter</item>
|
||||
</style>
|
||||
</resources>
|
||||