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
2ed7df67
Commit
2ed7df67
authored
Sep 07, 2022
by
NGUYEN HOANG SON
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
improve footer of related content screen
parent
70ba2b88
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
3 deletions
+13
-3
ABVJE_Launcher_Android/assets/check
+1
-1
ABVJE_UI_Android/res/layout-large/ac_operation_related_content.xml
+2
-0
ABVJE_UI_Android/res/layout-normal/ac_operation_related_content.xml
+2
-0
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/OperationRelatedContentActivity.java
+8
-2
No files found.
check
@
d7882719
Subproject commit
768a84338df268328565c77d94d7da065d82e746
Subproject commit
d7882719a1c56bd0a2767dd6f0edef6b2064c8b0
ABVJE_UI_Android/res/layout-large/ac_operation_related_content.xml
View file @
2ed7df67
...
...
@@ -101,6 +101,7 @@
android:layout_marginRight=
"30dp"
>
<LinearLayout
android:id=
"@+id/dashboard_layout"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_weight=
"1"
...
...
@@ -125,6 +126,7 @@
</LinearLayout>
<LinearLayout
android:id=
"@+id/operation_layout"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_weight=
"1"
...
...
ABVJE_UI_Android/res/layout-normal/ac_operation_related_content.xml
View file @
2ed7df67
...
...
@@ -86,6 +86,7 @@
android:visibility=
"visible"
>
<LinearLayout
android:id=
"@+id/dashboard_layout"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_gravity=
"center"
...
...
@@ -111,6 +112,7 @@
</LinearLayout>
<LinearLayout
android:id=
"@+id/operation_layout"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_gravity=
"center"
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/OperationRelatedContentActivity.java
View file @
2ed7df67
...
...
@@ -58,7 +58,9 @@ public class OperationRelatedContentActivity extends ABVUIActivity {
private
OperationRelatedContentSectionAdapter
mOperationRelatedContentSectionAdapter
;
private
LinearLayout
dashboardLayout
;
private
ImageButton
mDashboardHomeButton
;
private
LinearLayout
operationLayout
;
private
ImageButton
mOperationHomeButton
;
// ホームボタン
private
ImageButton
mOperationRelatedContentButton
;
//
private
ImageButton
mQuickReportPrintButton
;
// 簡易帳票印刷ボタン
...
...
@@ -81,8 +83,10 @@ public class OperationRelatedContentActivity extends ABVUIActivity {
updateCollaborationInfo
();
setContentView
(
R
.
layout
.
ac_operation_related_content
);
dashboardLayout
=
findViewById
(
R
.
id
.
dashboard_layout
);
mDashboardHomeButton
=
(
ImageButton
)
findViewById
(
R
.
id
.
btn_dashboard_home
);
// ホームボタン(作業一覧へ遷移ボタン)
operationLayout
=
findViewById
(
R
.
id
.
operation_layout
);
mOperationHomeButton
=
(
ImageButton
)
findViewById
(
R
.
id
.
btn_operation_home
);
// 共通資料ボタン
mOperationRelatedContentButton
=
(
ImageButton
)
findViewById
(
R
.
id
.
btn_common_content
);
...
...
@@ -330,14 +334,16 @@ public class OperationRelatedContentActivity extends ABVUIActivity {
* ボタンイベント設定
*/
private
void
setOnButtonEvent
()
{
mDashboardHomeButton
.
setOnClickListener
(
new
View
.
OnClickListener
()
{
mDashboardHomeButton
.
setClickable
(
false
);
dashboardLayout
.
setOnClickListener
(
new
View
.
OnClickListener
()
{
@Override
public
void
onClick
(
View
v
)
{
backToHome
(
"dashboard"
);
}
});
// 作業のホーム画面へ
mOperationHomeButton
.
setOnClickListener
(
new
View
.
OnClickListener
()
{
mOperationHomeButton
.
setClickable
(
false
);
operationLayout
.
setOnClickListener
(
new
View
.
OnClickListener
()
{
@Override
public
void
onClick
(
View
v
)
{
backToHome
(
"operationList"
);
...
...
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