Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
YGOMobile
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fallenstardust
YGOMobile
Commits
977621f6
Commit
977621f6
authored
Jul 26, 2019
by
fallenstardust
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
arrange strings.xml
parent
a268e3f0
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
36 additions
and
15 deletions
+36
-15
mobile/src/main/java/cn/garymb/ygomobile/utils/YGODialogUtil.java
...rc/main/java/cn/garymb/ygomobile/utils/YGODialogUtil.java
+12
-12
mobile/src/main/java/cn/garymb/ygomobile/utils/recyclerview/DeckTypeTouchHelperCallback.java
...obile/utils/recyclerview/DeckTypeTouchHelperCallback.java
+4
-3
mobile/src/main/res/values-ko/strings.xml
mobile/src/main/res/values-ko/strings.xml
+6
-0
mobile/src/main/res/values-zh/strings.xml
mobile/src/main/res/values-zh/strings.xml
+7
-0
mobile/src/main/res/values/strings.xml
mobile/src/main/res/values/strings.xml
+7
-0
No files found.
mobile/src/main/java/cn/garymb/ygomobile/utils/YGODialogUtil.java
View file @
977621f6
...
...
@@ -153,14 +153,14 @@ public class YGODialogUtil {
ll_add
.
setOnClickListener
(
new
View
.
OnClickListener
()
{
@Override
public
void
onClick
(
View
v
)
{
du
.
dialogl
(
"新建"
,
new
String
[]{
"分类"
,
"卡组"
}).
setOnItemClickListener
(
new
AdapterView
.
OnItemClickListener
()
{
du
.
dialogl
(
context
.
getString
(
R
.
string
.
new_deck
),
new
String
[]{
context
.
getString
(
R
.
string
.
category_name
),
context
.
getString
(
R
.
string
.
deck_name
)
}).
setOnItemClickListener
(
new
AdapterView
.
OnItemClickListener
()
{
@Override
public
void
onItemClick
(
AdapterView
<?>
parent
,
View
view
,
int
position
,
long
id
)
{
du
.
dis
();
switch
(
position
)
{
case
0
:
DialogPlus
builder
=
new
DialogPlus
(
context
);
builder
.
setTitle
(
"请输入分类名"
);
builder
.
setTitle
(
R
.
string
.
please_input_category_name
);
EditText
editText
=
new
EditText
(
context
);
editText
.
setGravity
(
Gravity
.
TOP
|
Gravity
.
LEFT
);
editText
.
setInputType
(
InputType
.
TYPE_TEXT_FLAG_NO_SUGGESTIONS
);
...
...
@@ -172,7 +172,7 @@ public class YGODialogUtil {
builder
.
setLeftButtonListener
((
dlg
,
s
)
->
{
String
name
=
editText
.
getText
().
toString
().
trim
();
if
(
TextUtils
.
isEmpty
(
name
))
{
YGOUtil
.
show
(
"名称不能为空"
);
YGOUtil
.
show
(
context
.
getString
(
R
.
string
.
invalid_category_name
)
);
return
;
}
File
file
=
new
File
(
AppsSettings
.
get
().
getDeckDir
(),
name
);
...
...
@@ -198,7 +198,7 @@ public class YGODialogUtil {
public
void
onClick
(
View
v
)
{
List
<
DeckType
>
otherType
=
getOtherTypeList
();
du
.
dialogl
(
"请选择要移动到的分类"
,
getStringType
(
otherType
)).
setOnItemClickListener
(
new
AdapterView
.
OnItemClickListener
()
{
du
.
dialogl
(
context
.
getString
(
R
.
string
.
please_select_target_category
)
,
getStringType
(
otherType
)).
setOnItemClickListener
(
new
AdapterView
.
OnItemClickListener
()
{
@Override
public
void
onItemClick
(
AdapterView
<?>
parent
,
View
view
,
int
position
,
long
id
)
{
du
.
dis
();
...
...
@@ -212,7 +212,7 @@ public class YGODialogUtil {
}
deckList
.
remove
(
deckFile
);
}
YGOUtil
.
show
(
"移动完毕"
);
YGOUtil
.
show
(
context
.
getString
(
R
.
string
.
done
)
);
onDeckMenuListener
.
onDeckMove
(
deckAdp
.
getSelectList
(),
toType
);
clearDeckSelect
();
}
...
...
@@ -225,7 +225,7 @@ public class YGODialogUtil {
public
void
onClick
(
View
v
)
{
List
<
DeckType
>
otherType
=
getOtherTypeList
();
du
.
dialogl
(
"请选择要复制到的分类"
,
getStringType
(
otherType
)).
setOnItemClickListener
(
new
AdapterView
.
OnItemClickListener
()
{
du
.
dialogl
(
context
.
getString
(
R
.
string
.
please_select_target_category
)
,
getStringType
(
otherType
)).
setOnItemClickListener
(
new
AdapterView
.
OnItemClickListener
()
{
@Override
public
void
onItemClick
(
AdapterView
<?>
parent
,
View
view
,
int
position
,
long
id
)
{
du
.
dis
();
...
...
@@ -239,7 +239,7 @@ public class YGODialogUtil {
}
deckList
.
remove
(
deckFile
);
}
YGOUtil
.
show
(
"复制完毕"
);
YGOUtil
.
show
(
context
.
getString
(
R
.
string
.
done
)
);
onDeckMenuListener
.
onDeckCopy
(
deckAdp
.
getSelectList
(),
toType
);
clearDeckSelect
();
}
...
...
@@ -251,13 +251,13 @@ public class YGODialogUtil {
@Override
public
void
onClick
(
View
v
)
{
if
(
deckAdp
.
getSelectList
().
size
()
==
0
)
{
YGOUtil
.
show
(
"未选中卡组"
);
YGOUtil
.
show
(
context
.
getString
(
R
.
string
.
no_deck_is_selected
)
);
return
;
}
DialogPlus
dialogPlus
=
new
DialogPlus
(
context
);
dialogPlus
.
setMessage
(
"确定删除这些卡组吗?"
);
dialogPlus
.
setMessage
(
R
.
string
.
question_delete_deck
);
dialogPlus
.
setLeftButtonText
(
YGOUtil
.
s
(
R
.
string
.
delete
));
dialogPlus
.
setRightButtonText
(
"取消"
);
dialogPlus
.
setRightButtonText
(
R
.
string
.
Cancel
);
dialogPlus
.
setLeftButtonListener
(
new
DialogInterface
.
OnClickListener
()
{
@Override
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
...
...
@@ -266,7 +266,7 @@ public class YGODialogUtil {
new
File
(
deckFile
.
getPath
()).
delete
();
deckList
.
remove
(
deckFile
);
}
YGOUtil
.
show
(
"删除完毕"
);
YGOUtil
.
show
(
context
.
getString
(
R
.
string
.
done
)
);
dialogPlus
.
dismiss
();
onDeckMenuListener
.
onDeckDel
(
selectDeckList
);
clearDeckSelect
();
...
...
@@ -314,7 +314,7 @@ public class YGODialogUtil {
}
}
IOUtils
.
delete
(
file
);
YGOUtil
.
show
(
"删除完毕"
);
YGOUtil
.
show
(
context
.
getString
(
R
.
string
.
done
)
);
onDeckMenuListener
.
onDeckDel
(
deckFileList
);
typeAdp
.
remove
(
positon
);
if
(
typeAdp
.
getSelectPosition
()
==
positon
)
{
...
...
mobile/src/main/java/cn/garymb/ygomobile/utils/recyclerview/DeckTypeTouchHelperCallback.java
View file @
977621f6
...
...
@@ -12,6 +12,7 @@ import java.util.List;
import
cn.garymb.ygomobile.bean.DeckType
;
import
cn.garymb.ygomobile.bean.events.DeckFile
;
import
cn.garymb.ygomobile.lite.R
;
import
cn.garymb.ygomobile.ui.adapters.TextSelectAdapter
;
import
cn.garymb.ygomobile.ui.plus.DialogPlus
;
import
cn.garymb.ygomobile.utils.IOUtils
;
...
...
@@ -52,9 +53,9 @@ public class DeckTypeTouchHelperCallback extends ItemTouchHelper.Callback {
TextSelectAdapter
textSelectAdapter
=
((
TextSelectAdapter
)
recyclerView
.
getAdapter
());
DialogPlus
dialogPlus
=
new
DialogPlus
(
recyclerView
.
getContext
());
dialogPlus
.
setMessage
(
"确定删除该分类吗?分类下的卡组也将全部被删除"
);
dialogPlus
.
setLeftButtonText
(
"删除"
);
dialogPlus
.
setRightButtonText
(
"取消"
);
dialogPlus
.
setMessage
(
R
.
string
.
delete_confirm
);
dialogPlus
.
setLeftButtonText
(
R
.
string
.
delete
);
dialogPlus
.
setRightButtonText
(
R
.
string
.
Cancel
);
dialogPlus
.
setLeftButtonListener
(
new
DialogInterface
.
OnClickListener
()
{
@Override
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
...
...
mobile/src/main/res/values-ko/strings.xml
View file @
977621f6
...
...
@@ -254,4 +254,10 @@
<string
name=
"category_pack"
>
한 갑
</string>
<string
name=
"category_windbot_deck"
>
AI 덱
</string>
<string
name=
"category_Uncategorized"
>
분류되지 않은
</string>
<string
name=
"please_input_category_name"
>
카테고리 이름을 입력하십시오.
</string>
<string
name=
"invalid_category_name"
>
잘못된 카테고리
</string>
<string
name=
"please_select_target_category"
>
카테고리를 지정하십시오.
</string>
<string
name=
"delete_confirm"
>
카테고리 전부 삭제
</string>
<string
name=
"no_deck_is_selected"
>
덱이 선택되지 않았습니다.
</string>
<string
name=
"done"
>
완료!
</string>
</resources>
mobile/src/main/res/values-zh/strings.xml
View file @
977621f6
...
...
@@ -207,6 +207,7 @@
<string
name=
"deck_manager_v2"
>
组卡器V2
</string>
<string
name=
"reset_game_ver_fail"
>
重置游戏版本失败
</string>
<string
name=
"deck_name"
>
卡组
</string>
<string
name=
"category_name"
>
卡组分类
</string>
<string
name=
"save_quit"
>
保存并退出
</string>
<string
name=
"tip_reset_game_res"
>
游戏数据检查完成
</string>
<string
name=
"join_helper_tip"
>
你可以把常约战的服务器拖到第一位
...
...
@@ -256,4 +257,10 @@
<string
name=
"category_pack"
>
卡包展示
</string>
<string
name=
"category_windbot_deck"
>
人机卡组
</string>
<string
name=
"category_Uncategorized"
>
未分类卡组
</string>
<string
name=
"please_input_category_name"
>
请输入新卡组分类名
</string>
<string
name=
"invalid_category_name"
>
无效的名称
</string>
<string
name=
"please_select_target_category"
>
要放到哪个的分类
</string>
<string
name=
"delete_confirm"
>
确定删除该分类吗,分类下的卡组也将全部被删除
</string>
<string
name=
"no_deck_is_selected"
>
未选中卡组
</string>
<string
name=
"done"
>
完成!
</string>
</resources>
mobile/src/main/res/values/strings.xml
View file @
977621f6
...
...
@@ -210,6 +210,7 @@
<string
name=
"deck_manager_v2"
>
Deck Manager V2
</string>
<string
name=
"reset_game_ver_fail"
>
reset game version fail
</string>
<string
name=
"deck_name"
>
Deck
</string>
<string
name=
"category_name"
>
Deck Category
</string>
<string
name=
"save_quit"
>
Save and quit
</string>
<string
name=
"tip_reset_game_res"
>
Reset game resources completed
</string>
<string
name=
"join_helper_tip"
>
you can move your favourite sever on top
...
...
@@ -259,4 +260,10 @@
<string
name=
"category_pack"
>
Pack
</string>
<string
name=
"category_windbot_deck"
>
BotDeck
</string>
<string
name=
"category_Uncategorized"
>
UncategorizedDeck
</string>
<string
name=
"please_input_category_name"
>
please input category name
</string>
<string
name=
"invalid_category_name"
>
invalid category name
</string>
<string
name=
"please_select_target_category"
>
please select target category
</string>
<string
name=
"delete_confirm"
>
will delete all deck of this Category
</string>
<string
name=
"no_deck_is_selected"
>
no_deck_is_selected
</string>
<string
name=
"done"
>
done!
</string>
</resources>
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