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
43d2735d
Commit
43d2735d
authored
Jun 10, 2024
by
Kim Jinsung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
プッシュメッセージ詳細画面から送信日非表示問題対応
parent
f2799468
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
3 deletions
+2
-3
ABVJE_UI_Android/res/layout-large/push_message_list_dialog.xml
+1
-1
ABVJE_UI_Android/res/layout-normal/push_message_list_dialog.xml
+1
-1
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/OperationListActivity.java
+0
-1
No files found.
ABVJE_UI_Android/res/layout-large/push_message_list_dialog.xml
View file @
43d2735d
...
...
@@ -99,7 +99,7 @@
android:text=
"@string/title_date"
android:textColor=
"@color/push_message_list_send_date_text"
/>
<TextView
android:id=
"@+id/tv_send_
user
"
android:id=
"@+id/tv_send_
date
"
android:layout_width=
"200dp"
android:layout_height=
"wrap_content"
android:text=
"@string/dummy_str"
...
...
ABVJE_UI_Android/res/layout-normal/push_message_list_dialog.xml
View file @
43d2735d
...
...
@@ -102,7 +102,7 @@
android:text=
"@string/title_date"
android:textColor=
"@color/push_message_list_send_date_text"
/>
<TextView
android:id=
"@+id/tv_send_
user
"
android:id=
"@+id/tv_send_
date
"
android:layout_width=
"200dp"
android:layout_height=
"wrap_content"
android:text=
"@string/dummy_str"
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/OperationListActivity.java
View file @
43d2735d
...
...
@@ -1603,7 +1603,6 @@ public class OperationListActivity extends OperationActivity {
TextView
messageTextView
=
(
TextView
)
mPushMessageListDialog
.
findViewById
(
R
.
id
.
tv_message
);
TextView
sendDateTextView
=
(
TextView
)
mPushMessageListDialog
.
findViewById
(
R
.
id
.
tv_send_date
);
TextView
sendOperationNameTextView
=
(
TextView
)
mPushMessageListDialog
.
findViewById
(
R
.
id
.
tv_operation_name
);
TextView
sendUserTextView
=
(
TextView
)
mPushMessageListDialog
.
findViewById
(
R
.
id
.
tv_send_user
);
messageTextView
.
setText
(
dto
.
pushMessage
);
sendDateTextView
.
setText
(
DateTimeUtil
.
toString
(
dto
.
pushSendDate
,
DateTimeFormat
.
yyyyMMddHHmm_slash
));
sendOperationNameTextView
.
setText
(
dto
.
operationName
);
...
...
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