Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
YDL-Component-Medical
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
杨凯
YDL-Component-Medical
Commits
ec8fffe0
Commit
ec8fffe0
authored
Apr 21, 2022
by
霍志良
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:图标更换
parent
898fc71b
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
304 additions
and
33 deletions
+304
-33
DynamicPublishImageAdapter.java
m-dynamic/src/main/java/com/yidianling/dynamic/publishTrend/DynamicPublishImageAdapter.java
+228
-0
PublishTrendActivity.java
m-dynamic/src/main/java/com/yidianling/dynamic/publishTrend/PublishTrendActivity.java
+2
-2
PublishQuestionAndTrendFragment.java
m-dynamic/src/main/java/com/yidianling/dynamic/publishTrend/fragment/PublishQuestionAndTrendFragment.java
+8
-6
dynamic_add_temp.webp
m-dynamic/src/main/res/drawable-xhdpi/dynamic_add_temp.webp
+0
-0
dynamic_edict_ico_emoji.png
m-dynamic/src/main/res/drawable-xhdpi/dynamic_edict_ico_emoji.png
+0
-0
dynamic_edict_ico_emoji.webp
m-dynamic/src/main/res/drawable-xhdpi/dynamic_edict_ico_emoji.webp
+0
-0
dynamic_edit_img.png
m-dynamic/src/main/res/drawable-xhdpi/dynamic_edit_img.png
+0
-0
dynamic_edit_img.webp
m-dynamic/src/main/res/drawable-xhdpi/dynamic_edit_img.webp
+0
-0
dynamic_bg_publish_button.xml
m-dynamic/src/main/res/drawable/dynamic_bg_publish_button.xml
+1
-4
dynamic_bg_topic.xml
m-dynamic/src/main/res/drawable/dynamic_bg_topic.xml
+1
-1
dynamic_activity_trend.xml
m-dynamic/src/main/res/layout/dynamic_activity_trend.xml
+23
-14
dynamic_fragment_publish_trend.xml
m-dynamic/src/main/res/layout/dynamic_fragment_publish_trend.xml
+6
-5
dynamic_layout_publish_trend_bottom.xml
m-dynamic/src/main/res/layout/dynamic_layout_publish_trend_bottom.xml
+2
-1
dynamic_publish_img_item.xml
m-dynamic/src/main/res/layout/dynamic_publish_img_item.xml
+33
-0
No files found.
m-dynamic/src/main/java/com/yidianling/dynamic/publishTrend/DynamicPublishImageAdapter.java
0 → 100644
View file @
ec8fffe0
package
com
.
yidianling
.
dynamic
.
publishTrend
;
import
android.content.Context
;
import
android.net.Uri
;
import
android.os.Build
;
import
android.view.LayoutInflater
;
import
android.view.View
;
import
android.view.ViewGroup
;
import
android.widget.ImageView
;
import
androidx.annotation.RequiresApi
;
import
androidx.recyclerview.widget.RecyclerView
;
import
com.miracle.view.imageeditor.utils.FileUtils
;
import
com.ydl.ydl_image.module.GlideApp
;
import
com.ydl.ydl_image.transform.GlideRoundTransform
;
import
com.ydl.ydlcommon.ui.ParcelableImage
;
import
com.yidianling.dynamic.R
;
import
java.util.List
;
public
class
DynamicPublishImageAdapter
extends
RecyclerView
.
Adapter
<
PublishImageViewHolder
>
{
private
static
final
String
TAG
=
"RecommendTrendImgAdapte"
;
protected
Context
mContext
;
protected
List
<
ParcelableImage
>
mDatas
;
protected
LayoutInflater
mInflater
;
public
interface
OnItemClickLister
{
void
onItemClick
(
View
view
,
int
position
);
void
onItemLongClick
(
View
view
,
int
position
);
}
public
interface
OnDeleteClickLister
{
void
onDeleteClick
(
View
view
,
int
position
);
void
onDeleteLongClick
(
View
view
,
int
position
);
}
public
interface
OnAddClickLister
{
void
OnAddClick
(
View
view
,
int
position
);
void
OnAddLongClick
(
View
view
,
int
position
);
}
private
OnItemClickLister
mOnItemClickLister
;
private
OnDeleteClickLister
mOnDeleteClickLister
;
private
OnAddClickLister
mOnAddClickLister
;
public
void
setOnItemClickLister
(
OnItemClickLister
lister
)
{
this
.
mOnItemClickLister
=
lister
;
}
public
void
setOnDeleteClickLister
(
OnDeleteClickLister
lister
)
{
this
.
mOnDeleteClickLister
=
lister
;
}
public
void
setOnAddClickLister
(
OnAddClickLister
lister
)
{
this
.
mOnAddClickLister
=
lister
;
}
public
DynamicPublishImageAdapter
(
List
<
ParcelableImage
>
mDatas
,
Context
mContext
)
{
this
.
mContext
=
mContext
;
this
.
mDatas
=
mDatas
;
mInflater
=
LayoutInflater
.
from
(
mContext
);
}
@Override
public
PublishImageViewHolder
onCreateViewHolder
(
ViewGroup
parent
,
int
viewType
)
{
View
view
=
null
;
view
=
mInflater
.
inflate
(
R
.
layout
.
dynamic_publish_img_item
,
parent
,
false
);
PublishImageViewHolder
viewHolder
=
new
PublishImageViewHolder
(
view
);
return
viewHolder
;
}
@RequiresApi
(
api
=
Build
.
VERSION_CODES
.
JELLY_BEAN
)
@Override
public
void
onBindViewHolder
(
PublishImageViewHolder
holder
,
final
int
position
)
{
ParcelableImage
trendImage
=
mDatas
.
get
(
position
);
String
path
=
trendImage
.
getImage_url
();
if
(
"default"
.
equals
(
path
))
{
holder
.
bg_iv
.
setVisibility
(
View
.
VISIBLE
);
holder
.
item_publish_iv
.
setVisibility
(
View
.
GONE
);
holder
.
item_publish_cancel_iv
.
setVisibility
(
View
.
GONE
);
}
else
{
holder
.
item_publish_cancel_iv
.
setVisibility
(
View
.
VISIBLE
);
holder
.
bg_iv
.
setVisibility
(
View
.
GONE
);
holder
.
item_publish_iv
.
setVisibility
(
View
.
VISIBLE
);
Uri
uriByPath
=
FileUtils
.
INSTANCE
.
getUriByPath
(
mContext
,
path
);
GlideApp
.
with
(
mContext
)
.
load
(
uriByPath
)
.
error
(
R
.
drawable
.
dynamic_add_temp
)
.
transform
(
new
GlideRoundTransform
(
mContext
,
6
))
// .centerCrop()
.
into
(
holder
.
item_publish_iv
);
}
setUpItemEvent
(
holder
);
setUpDeleteEvent
(
holder
);
setUpAddEvent
(
holder
);
}
@Override
public
int
getItemCount
()
{
return
mDatas
.
size
();
}
public
void
updateDate
(
List
<
ParcelableImage
>
mDatas
)
{
this
.
mDatas
=
mDatas
;
notifyDataSetChanged
();
}
/**
* 添加据到指定位置
*
* @param pos 数据添加的位置
* @param trendImage 数据
*/
public
void
addData
(
int
pos
,
ParcelableImage
trendImage
)
{
mDatas
.
add
(
trendImage
);
notifyItemInserted
(
pos
);
}
/**
* 删除指定位置数据
*
* @param pos
*/
public
void
deleteData
(
int
pos
)
{
mDatas
.
remove
(
pos
);
notifyItemRemoved
(
pos
);
}
/**
* 给item添加监听
*
* @param holder
*/
protected
void
setUpItemEvent
(
final
PublishImageViewHolder
holder
)
{
if
(
mOnItemClickLister
!=
null
)
{
holder
.
item_publish_iv
.
setOnClickListener
(
new
View
.
OnClickListener
()
{
@Override
public
void
onClick
(
View
v
)
{
int
layoutPosition
=
holder
.
getLayoutPosition
();
mOnItemClickLister
.
onItemClick
(
holder
.
item_publish_iv
,
layoutPosition
);
}
});
holder
.
itemView
.
setOnLongClickListener
(
new
View
.
OnLongClickListener
()
{
@Override
public
boolean
onLongClick
(
View
v
)
{
int
layoutPosition
=
holder
.
getLayoutPosition
();
mOnItemClickLister
.
onItemLongClick
(
holder
.
item_publish_iv
,
layoutPosition
);
return
false
;
}
});
}
}
/**
* 添加监听
*
* @param holder
*/
protected
void
setUpDeleteEvent
(
final
PublishImageViewHolder
holder
)
{
if
(
mOnItemClickLister
!=
null
)
{
holder
.
item_publish_cancel_iv
.
setOnClickListener
(
new
View
.
OnClickListener
()
{
@Override
public
void
onClick
(
View
v
)
{
int
layoutPosition
=
holder
.
getLayoutPosition
();
mOnDeleteClickLister
.
onDeleteClick
(
holder
.
item_publish_cancel_iv
,
layoutPosition
);
}
});
holder
.
item_publish_cancel_iv
.
setOnLongClickListener
(
new
View
.
OnLongClickListener
()
{
@Override
public
boolean
onLongClick
(
View
v
)
{
int
layoutPosition
=
holder
.
getLayoutPosition
();
mOnDeleteClickLister
.
onDeleteLongClick
(
holder
.
item_publish_cancel_iv
,
layoutPosition
);
return
false
;
}
});
}
}
/**
* 添加监听
*
* @param holder
*/
protected
void
setUpAddEvent
(
final
PublishImageViewHolder
holder
)
{
if
(
mOnAddClickLister
!=
null
)
{
holder
.
bg_iv
.
setOnClickListener
(
new
View
.
OnClickListener
()
{
@Override
public
void
onClick
(
View
v
)
{
int
layoutPosition
=
holder
.
getLayoutPosition
();
mOnAddClickLister
.
OnAddClick
(
holder
.
bg_iv
,
layoutPosition
);
}
});
holder
.
bg_iv
.
setOnLongClickListener
(
new
View
.
OnLongClickListener
()
{
@Override
public
boolean
onLongClick
(
View
v
)
{
int
layoutPosition
=
holder
.
getLayoutPosition
();
mOnAddClickLister
.
OnAddLongClick
(
holder
.
bg_iv
,
layoutPosition
);
return
false
;
}
});
}
}
}
class
PublishImageViewHolder
extends
RecyclerView
.
ViewHolder
{
ImageView
item_publish_iv
,
item_publish_cancel_iv
,
bg_iv
;
public
PublishImageViewHolder
(
View
itemView
)
{
super
(
itemView
);
bg_iv
=
(
ImageView
)
itemView
.
findViewById
(
R
.
id
.
item_publish_defult_iv
);
item_publish_iv
=
(
ImageView
)
itemView
.
findViewById
(
R
.
id
.
item_publish_iv
);
item_publish_cancel_iv
=
(
ImageView
)
itemView
.
findViewById
(
R
.
id
.
item_publish_cancel_iv
);
}
}
\ No newline at end of file
m-dynamic/src/main/java/com/yidianling/dynamic/publishTrend/PublishTrendActivity.java
View file @
ec8fffe0
...
@@ -49,7 +49,7 @@ public class PublishTrendActivity extends BaseActivity {
...
@@ -49,7 +49,7 @@ public class PublishTrendActivity extends BaseActivity {
private
static
final
String
COVER
=
"Test_cover"
;
private
static
final
String
COVER
=
"Test_cover"
;
private
static
final
String
TITLE
=
"Test_title"
;
private
static
final
String
TITLE
=
"Test_title"
;
private
static
final
String
ISFROMFM
=
"isfromfm"
;
private
static
final
String
ISFROMFM
=
"isfromfm"
;
private
Image
View
mBackIv
;
private
Text
View
mBackIv
;
private
TextView
mToastView
;
private
TextView
mToastView
;
private
NoScrollViewPager
mViewPager
;
private
NoScrollViewPager
mViewPager
;
private
CommonTabLayout
mTableLayout
;
private
CommonTabLayout
mTableLayout
;
...
@@ -114,7 +114,7 @@ public class PublishTrendActivity extends BaseActivity {
...
@@ -114,7 +114,7 @@ public class PublishTrendActivity extends BaseActivity {
protected
void
initDataAndEvent
()
{
protected
void
initDataAndEvent
()
{
SharedPreferencesEditor
.
putString
(
"trend_state"
,
""
);
SharedPreferencesEditor
.
putString
(
"trend_state"
,
""
);
handler
=
new
Handler
();
handler
=
new
Handler
();
mBackIv
=
findViewById
(
R
.
id
.
img_back
);
mBackIv
=
findViewById
(
R
.
id
.
mBackIv
);
mPublishTrendTitle
=
findViewById
(
R
.
id
.
publish_trend_title_rel
);
mPublishTrendTitle
=
findViewById
(
R
.
id
.
publish_trend_title_rel
);
mBackIv
.
setOnClickListener
(
v
->
{
mBackIv
.
setOnClickListener
(
v
->
{
...
...
m-dynamic/src/main/java/com/yidianling/dynamic/publishTrend/fragment/PublishQuestionAndTrendFragment.java
View file @
ec8fffe0
...
@@ -70,6 +70,7 @@ import com.yidianling.dynamic.common.tool.ImageCompress;
...
@@ -70,6 +70,7 @@ import com.yidianling.dynamic.common.tool.ImageCompress;
import
com.yidianling.dynamic.model.Command
;
import
com.yidianling.dynamic.model.Command
;
import
com.yidianling.dynamic.model.PublishTrendResult
;
import
com.yidianling.dynamic.model.PublishTrendResult
;
import
com.ydl.ydlcommon.ui.ParcelableImage
;
import
com.ydl.ydlcommon.ui.ParcelableImage
;
import
com.yidianling.dynamic.publishTrend.DynamicPublishImageAdapter
;
import
com.yidianling.dynamic.publishTrend.PublishTrendActivity
;
import
com.yidianling.dynamic.publishTrend.PublishTrendActivity
;
import
com.yidianling.dynamic.publishTrend.SelecTopicActivity
;
import
com.yidianling.dynamic.publishTrend.SelecTopicActivity
;
import
com.yidianling.dynamic.router.DynamicIn
;
import
com.yidianling.dynamic.router.DynamicIn
;
...
@@ -130,7 +131,7 @@ public class PublishQuestionAndTrendFragment extends BaseFragment implements Vie
...
@@ -130,7 +131,7 @@ public class PublishQuestionAndTrendFragment extends BaseFragment implements Vie
private
String
head_path
;
//路径
private
String
head_path
;
//路径
File
head_filec
;
File
head_filec
;
private
List
<
ParcelableImage
>
publishTrendImgs
,
publishTrendImgBrows
;
private
List
<
ParcelableImage
>
publishTrendImgs
,
publishTrendImgBrows
;
private
PublishImageAdapter
adapter
;
private
Dynamic
PublishImageAdapter
adapter
;
String
topic_id
;
String
topic_id
;
String
topic_title
;
String
topic_title
;
...
@@ -261,13 +262,13 @@ public class PublishQuestionAndTrendFragment extends BaseFragment implements Vie
...
@@ -261,13 +262,13 @@ public class PublishQuestionAndTrendFragment extends BaseFragment implements Vie
head_dir
=
RxFileTool
.
getStorageDirectory
(
activity
)
+
"/img/publish_img/"
;
head_dir
=
RxFileTool
.
getStorageDirectory
(
activity
)
+
"/img/publish_img/"
;
if
(
adapter
==
null
)
{
if
(
adapter
==
null
)
{
adapter
=
new
PublishImageAdapter
(
publishTrendImgs
,
activity
);
adapter
=
new
Dynamic
PublishImageAdapter
(
publishTrendImgs
,
activity
);
}
else
{
}
else
{
adapter
.
notifyDataSetChanged
();
adapter
.
notifyDataSetChanged
();
}
}
publish_trend_img_rcv
.
setLayoutManager
(
new
GridLayoutManager
(
activity
,
4
));
publish_trend_img_rcv
.
setLayoutManager
(
new
GridLayoutManager
(
activity
,
4
));
publish_trend_img_rcv
.
setAdapter
(
adapter
);
publish_trend_img_rcv
.
setAdapter
(
adapter
);
adapter
.
setOnItemClickLister
(
new
PublishImageAdapter
.
OnItemClickLister
()
{
adapter
.
setOnItemClickLister
(
new
Dynamic
PublishImageAdapter
.
OnItemClickLister
()
{
@Override
@Override
public
void
onItemClick
(
View
view
,
int
position
)
{
public
void
onItemClick
(
View
view
,
int
position
)
{
publishTrendImgBrows
=
new
ArrayList
<
ParcelableImage
>();
publishTrendImgBrows
=
new
ArrayList
<
ParcelableImage
>();
...
@@ -306,7 +307,7 @@ public class PublishQuestionAndTrendFragment extends BaseFragment implements Vie
...
@@ -306,7 +307,7 @@ public class PublishQuestionAndTrendFragment extends BaseFragment implements Vie
}
}
});
});
adapter
.
setOnDeleteClickLister
(
new
PublishImageAdapter
.
OnDeleteClickLister
()
{
adapter
.
setOnDeleteClickLister
(
new
Dynamic
PublishImageAdapter
.
OnDeleteClickLister
()
{
@Override
@Override
public
void
onDeleteClick
(
View
view
,
int
position
)
{
public
void
onDeleteClick
(
View
view
,
int
position
)
{
DeleteImg
(
position
);
DeleteImg
(
position
);
...
@@ -317,7 +318,7 @@ public class PublishQuestionAndTrendFragment extends BaseFragment implements Vie
...
@@ -317,7 +318,7 @@ public class PublishQuestionAndTrendFragment extends BaseFragment implements Vie
}
}
});
});
adapter
.
setOnAddClickLister
(
new
PublishImageAdapter
.
OnAddClickLister
()
{
adapter
.
setOnAddClickLister
(
new
Dynamic
PublishImageAdapter
.
OnAddClickLister
()
{
@Override
@Override
public
void
OnAddClick
(
View
view
,
int
position
)
{
public
void
OnAddClick
(
View
view
,
int
position
)
{
if
(
publishTrendImgs
.
size
()
<
9
)
{
if
(
publishTrendImgs
.
size
()
<
9
)
{
...
@@ -668,7 +669,7 @@ public class PublishQuestionAndTrendFragment extends BaseFragment implements Vie
...
@@ -668,7 +669,7 @@ public class PublishQuestionAndTrendFragment extends BaseFragment implements Vie
* @param trend_title 话题标题
* @param trend_title 话题标题
* @param publishTrendImgs 图片附件
* @param publishTrendImgs 图片附件
*/
*/
@SuppressLint
(
"WrongConstant"
)
@SuppressLint
(
{
"WrongConstant"
,
"CheckResult"
}
)
private
void
DealFile
(
final
int
is_niming
,
final
String
topic_id
,
final
String
content
,
final
String
trend_title
,
final
List
<
ParcelableImage
>
publishTrendImgs
)
{
private
void
DealFile
(
final
int
is_niming
,
final
String
topic_id
,
final
String
content
,
final
String
trend_title
,
final
List
<
ParcelableImage
>
publishTrendImgs
)
{
imgFiles
=
new
ArrayList
<
File
>();
imgFiles
=
new
ArrayList
<
File
>();
Observable
.
fromIterable
(
publishTrendImgs
)
Observable
.
fromIterable
(
publishTrendImgs
)
...
@@ -720,6 +721,7 @@ public class PublishQuestionAndTrendFragment extends BaseFragment implements Vie
...
@@ -720,6 +721,7 @@ public class PublishQuestionAndTrendFragment extends BaseFragment implements Vie
* @param trend_title 话题标题
* @param trend_title 话题标题
* @param imgFiles 图片附件
* @param imgFiles 图片附件
*/
*/
@SuppressLint
(
"CheckResult"
)
private
void
PublishO
(
final
int
is_niming
,
final
String
topic_id
,
final
String
content
,
final
String
trend_title
,
final
List
<
File
>
imgFiles
)
{
private
void
PublishO
(
final
int
is_niming
,
final
String
topic_id
,
final
String
content
,
final
String
trend_title
,
final
List
<
File
>
imgFiles
)
{
BuryPointUtils
.
getInstance
().
createMap
()
BuryPointUtils
.
getInstance
().
createMap
()
.
put
(
"dynamic_type"
,
topic_title
)
.
put
(
"dynamic_type"
,
topic_title
)
...
...
m-dynamic/src/main/res/drawable-xhdpi/dynamic_add_temp.webp
0 → 100644
View file @
ec8fffe0
File added
m-dynamic/src/main/res/drawable-xhdpi/dynamic_edict_ico_emoji.png
deleted
100644 → 0
View file @
898fc71b
2.99 KB
m-dynamic/src/main/res/drawable-xhdpi/dynamic_edict_ico_emoji.webp
0 → 100644
View file @
ec8fffe0
File added
m-dynamic/src/main/res/drawable-xhdpi/dynamic_edit_img.png
deleted
100644 → 0
View file @
898fc71b
1.84 KB
m-dynamic/src/main/res/drawable-xhdpi/dynamic_edit_img.webp
0 → 100644
View file @
ec8fffe0
File added
m-dynamic/src/main/res/drawable/dynamic_bg_publish_button.xml
View file @
ec8fffe0
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android=
"http://schemas.android.com/apk/res/android"
>
<shape
xmlns:android=
"http://schemas.android.com/apk/res/android"
>
<solid
android:color=
"@color/dynamic_white"
/>
<solid
android:color=
"#ff1da1f2"
/>
<stroke
android:width=
"0.5dp"
android:color=
"@color/platform_line"
/>
<corners
android:radius=
"12dp"
/>
<corners
android:radius=
"12dp"
/>
</shape>
</shape>
m-dynamic/src/main/res/drawable/dynamic_bg_topic.xml
View file @
ec8fffe0
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android=
"http://schemas.android.com/apk/res/android"
>
<shape
xmlns:android=
"http://schemas.android.com/apk/res/android"
>
<solid
android:color=
"
@color/dynamic_msg_system_press
"
/>
<solid
android:color=
"
#f6f7f8
"
/>
<stroke
<stroke
android:width=
"0.5dp"
android:width=
"0.5dp"
android:color=
"@color/platform_line"
/>
android:color=
"@color/platform_line"
/>
...
...
m-dynamic/src/main/res/layout/dynamic_activity_trend.xml
View file @
ec8fffe0
...
@@ -11,23 +11,30 @@
...
@@ -11,23 +11,30 @@
android:orientation=
"horizontal"
android:orientation=
"horizontal"
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"48dp"
android:layout_height=
"48dp"
android:background=
"@drawable/dynamic_background_publish_trend_top"
android:gravity=
"center_vertical"
android:background=
"@color/dynamic_white"
>
>
<RelativeLayout
<RelativeLayout
android:layout_gravity=
"center_vertical"
android:layout_gravity=
"center_vertical"
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"48dp"
android:layout_height=
"48dp"
>
>
<ImageView
<TextView
android:id=
"@+id/img_back"
android:layout_width=
"wrap_content"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_height=
"match_parent"
android:textColor=
"@color/platform_color_333333"
android:layout_centerVertical=
"true"
android:text=
"取消"
android:paddingLeft=
"15dp"
android:id=
"@+id/mBackIv"
android:paddingRight=
"@dimen/platform_dp_15"
android:layout_centerInParent=
"true"
android:src=
"@drawable/platform_common_back"
/>
android:layout_alignParentLeft=
"true"
android:layout_marginStart=
"@dimen/platform_dp_16"
android:textSize=
"@dimen/platform_sp_14"
>
</TextView>
<com.flyco.tablayout.CommonTabLayout
<com.flyco.tablayout.CommonTabLayout
android:id=
"@+id/tab_layout"
android:id=
"@+id/tab_layout"
...
@@ -46,17 +53,19 @@
...
@@ -46,17 +53,19 @@
<TextView
<TextView
android:id=
"@+id/publish_trend_sure_tv"
android:id=
"@+id/publish_trend_sure_tv"
android:layout_width=
"wrap_content"
android:layout_width=
"wrap_content"
android:layout_height=
"
24dp
"
android:layout_height=
"
wrap_content
"
android:layout_alignParentRight=
"true"
android:layout_alignParentRight=
"true"
android:layout_centerInParent=
"true"
android:layout_centerInParent=
"true"
android:layout_marginRight=
"15dp"
android:layout_marginRight=
"15dp"
android:background=
"@drawable/dynamic_bg_publish_button"
android:background=
"@drawable/dynamic_bg_publish_button"
android:gravity=
"center"
android:gravity=
"center"
android:paddingLeft=
"10dp"
android:paddingLeft=
"11dp"
android:paddingRight=
"10dp"
android:paddingRight=
"11dp"
android:paddingTop=
"@dimen/platform_dp_3"
android:paddingBottom=
"@dimen/platform_dp_3"
android:text=
"发布"
android:text=
"发布"
android:textColor=
"@color/
platform_but_text_color_selected
"
android:textColor=
"@color/
dynamic_white
"
android:textSize=
"1
4
sp"
/>
android:textSize=
"1
3
sp"
/>
</RelativeLayout>
</RelativeLayout>
</LinearLayout>
</LinearLayout>
...
...
m-dynamic/src/main/res/layout/dynamic_fragment_publish_trend.xml
View file @
ec8fffe0
...
@@ -4,6 +4,7 @@
...
@@ -4,6 +4,7 @@
xmlns:tools=
"http://schemas.android.com/tools"
xmlns:tools=
"http://schemas.android.com/tools"
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:layout_height=
"match_parent"
android:background=
"@color/dynamic_white"
android:focusable=
"true"
android:focusable=
"true"
android:id=
"@+id/trends_publish_question"
android:id=
"@+id/trends_publish_question"
android:focusableInTouchMode=
"true"
android:focusableInTouchMode=
"true"
...
@@ -19,7 +20,7 @@
...
@@ -19,7 +20,7 @@
android:id=
"@+id/publish_trend_title_editext"
android:id=
"@+id/publish_trend_title_editext"
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_height=
"wrap_content"
android:background=
"@color/dynamic_
msg_system_press
"
android:background=
"@color/dynamic_
white
"
android:gravity=
"center_vertical"
android:gravity=
"center_vertical"
android:hint=
"标题:准确概括你的问题,且不少于5个字"
android:hint=
"标题:准确概括你的问题,且不少于5个字"
android:minHeight=
"50dp"
android:minHeight=
"50dp"
...
@@ -29,7 +30,7 @@
...
@@ -29,7 +30,7 @@
android:paddingRight=
"15dp"
android:paddingRight=
"15dp"
android:paddingBottom=
"13dp"
android:paddingBottom=
"13dp"
android:textColor=
"@color/dynamic_text_trend_title_black"
android:textColor=
"@color/dynamic_text_trend_title_black"
android:textColorHint=
"
@color/dynamic_text_trend_defult
"
android:textColorHint=
"
#bfbfbf
"
android:textSize=
"24sp"
android:textSize=
"24sp"
tools:text=
"标题:说说你的标题:说说你的标题:说说你的困惑标题:说说你的困标题:说说你的困惑标题:说说你的困惑困惑标题:说说你的困惑"
/>
tools:text=
"标题:说说你的标题:说说你的标题:说说你的困惑标题:说说你的困标题:说说你的困惑标题:说说你的困惑困惑标题:说说你的困惑"
/>
<RelativeLayout
<RelativeLayout
...
@@ -53,7 +54,7 @@
...
@@ -53,7 +54,7 @@
android:padding=
"15dp"
android:padding=
"15dp"
android:paddingLeft=
"15dp"
android:paddingLeft=
"15dp"
android:textColor=
"@color/dynamic_text_trend_title_black"
android:textColor=
"@color/dynamic_text_trend_title_black"
android:textColorHint=
"
@color/dynamic_text_trend_defult
"
android:textColorHint=
"
#bfbfbf
"
android:textSize=
"17sp"
/>
android:textSize=
"17sp"
/>
<androidx.recyclerview.widget.RecyclerView
<androidx.recyclerview.widget.RecyclerView
android:id=
"@+id/publish_trend_img_rcv"
android:id=
"@+id/publish_trend_img_rcv"
...
@@ -79,7 +80,7 @@
...
@@ -79,7 +80,7 @@
android:paddingLeft=
"10dp"
android:paddingLeft=
"10dp"
android:paddingRight=
"10dp"
android:paddingRight=
"10dp"
android:text=
"# 选择话题"
android:text=
"# 选择话题"
android:textColor=
"
@color/platform_color_666666
"
android:textColor=
"
#999999
"
android:textSize=
"11sp"
/>
android:textSize=
"11sp"
/>
<TextView
<TextView
...
@@ -91,7 +92,7 @@
...
@@ -91,7 +92,7 @@
android:gravity=
"center_vertical"
android:gravity=
"center_vertical"
android:includeFontPadding=
"false"
android:includeFontPadding=
"false"
android:text=
"0/1000"
android:text=
"0/1000"
android:textColor=
"#
FF757575
"
android:textColor=
"#
b8b8b8
"
android:textSize=
"11sp"
/>
android:textSize=
"11sp"
/>
<View
<View
...
...
m-dynamic/src/main/res/layout/dynamic_layout_publish_trend_bottom.xml
View file @
ec8fffe0
...
@@ -3,13 +3,14 @@
...
@@ -3,13 +3,14 @@
xmlns:app=
"http://schemas.android.com/apk/res-auto"
xmlns:app=
"http://schemas.android.com/apk/res-auto"
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_height=
"wrap_content"
android:background=
"@color/dynamic_white"
android:orientation=
"vertical"
>
android:orientation=
"vertical"
>
<RelativeLayout
<RelativeLayout
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"50dp"
android:layout_height=
"50dp"
android:layout_alignParentBottom=
"true"
android:layout_alignParentBottom=
"true"
android:background=
"@drawable/dynamic_bg_bottom_trend_line"
>
>
<ImageView
<ImageView
android:id=
"@+id/publish_trend_bottom_img_iv"
android:id=
"@+id/publish_trend_bottom_img_iv"
...
...
m-dynamic/src/main/res/layout/dynamic_publish_img_item.xml
0 → 100644
View file @
ec8fffe0
<?xml version="1.0" encoding="utf-8"?>
<com.ydl.ydlcommon.view.SquareRelativeLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:padding=
"5dp"
>
<ImageView
android:id=
"@+id/item_publish_defult_iv"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:background=
"@drawable/dynamic_add_temp"
android:contentDescription=
"@null"
android:scaleType=
"fitXY"
android:visibility=
"gone"
/>
<ImageView
android:id=
"@+id/item_publish_iv"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:contentDescription=
"@null"
android:scaleType=
"fitXY"
/>
<ImageView
android:id=
"@+id/item_publish_cancel_iv"
android:layout_width=
"22dp"
android:layout_height=
"22dp"
android:layout_alignParentRight=
"true"
android:layout_alignParentTop=
"true"
android:src=
"@drawable/platform_img_delete"
/>
</com.ydl.ydlcommon.view.SquareRelativeLayout>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment