Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abook_check
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abook_android
abook_check
Commits
3a2702bb
Commit
3a2702bb
authored
Apr 11, 2019
by
Lee Jaebin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PDFの一時保存時、dtoの値をリセットしないように修正
#33348 遠隔支援で、文字が見切れている対応
parent
1e3a4e8b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
15 deletions
+18
-15
ABVJE_UI_Android/res/layout-normal/item_operation_meeting_list_render.xml
+14
-14
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/ContentViewActivity.java
+4
-1
No files found.
ABVJE_UI_Android/res/layout-normal/item_operation_meeting_list_render.xml
View file @
3a2702bb
...
...
@@ -9,14 +9,14 @@
android:id=
"@+id/meeting_room_row_layout"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"
10
dp"
android:layout_marginRight=
"
10
dp"
android:layout_marginLeft=
"
5
dp"
android:layout_marginRight=
"
5
dp"
android:background=
"@drawable/meeting_off_border"
>
<TableRow>
<TextView
android:layout_marginLeft=
"
10
dp"
android:layout_marginLeft=
"
5
dp"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:text=
"@string/room_no"
...
...
@@ -26,12 +26,12 @@
android:id=
"@+id/meeting_id"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"
10
dp"
android:layout_marginLeft=
"
5
dp"
android:text=
"@string/dummy_num"
android:textColor=
"#000000"
/>
<TextView
android:layout_marginLeft=
"
10
dp"
android:layout_marginLeft=
"
5
dp"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:text=
"@string/meeting_participant_count"
...
...
@@ -41,7 +41,7 @@
android:id=
"@+id/participant_count"
android:layout_width=
"40dp"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"
10
dp"
android:layout_marginLeft=
"
5
dp"
android:text=
"@string/dummy_num"
android:textColor=
"@color/text_select"
/>
...
...
@@ -52,7 +52,7 @@
<TableRow>
<TextView
android:layout_marginLeft=
"
10
dp"
android:layout_marginLeft=
"
5
dp"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:text=
"@string/room_name"
...
...
@@ -62,7 +62,7 @@
android:id=
"@+id/meeting_room_name"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"
10
dp"
android:layout_marginLeft=
"
5
dp"
android:layout_span=
"1"
android:textStyle=
"bold"
android:text=
"@string/dummy_str"
...
...
@@ -85,7 +85,7 @@
<TableRow>
<TextView
android:layout_marginLeft=
"
10
dp"
android:layout_marginLeft=
"
5
dp"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:text=
"@string/create_date"
...
...
@@ -95,12 +95,12 @@
android:id=
"@+id/create_date"
android:layout_width=
"110dp"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"
10
dp"
android:layout_marginLeft=
"
5
dp"
android:text=
"@string/dummy_date"
android:textColor=
"@color/text_select"
/>
<TextView
android:layout_marginLeft=
"
10
dp"
android:layout_marginLeft=
"
5
dp"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_span=
"1"
...
...
@@ -111,7 +111,7 @@
android:id=
"@+id/password_set"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"
10
dp"
android:layout_marginLeft=
"
5
dp"
android:text=
"@string/dummy_str"
android:textColor=
"@color/text_select"
/>
</TableRow>
...
...
@@ -119,7 +119,7 @@
<TableRow>
<TextView
android:layout_marginLeft=
"
10
dp"
android:layout_marginLeft=
"
5
dp"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:text=
"@string/creator"
...
...
@@ -129,7 +129,7 @@
android:id=
"@+id/creator"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginLeft=
"
10
dp"
android:layout_marginLeft=
"
5
dp"
android:layout_span=
"3"
android:text=
"@string/dummy_str"
android:textColor=
"#000000"
/>
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/ContentViewActivity.java
View file @
3a2702bb
...
...
@@ -5228,7 +5228,10 @@ public class ContentViewActivity extends ABVContentViewActivity {
operationTaskLayout
.
setIconStatus
(
taskKey
,
false
);
break
;
}
operationTaskLayout
.
currentTaskDto
=
null
;
// 一時保存コマンド以外は、operationTaskLayout.currentTaskDtoをリセットする
if
(!
cmd
.
equals
(
ABookKeys
.
CMD_LOCAL_SAVE_TASK_REPORT
))
{
operationTaskLayout
.
currentTaskDto
=
null
;
}
}
}
...
...
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