Commit 3a2702bb by Lee Jaebin

PDFの一時保存時、dtoの値をリセットしないように修正

#33348 遠隔支援で、文字が見切れている対応
parent 1e3a4e8b
......@@ -9,14 +9,14 @@
android:id="@+id/meeting_room_row_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:background="@drawable/meeting_off_border">
<TableRow>
<TextView
android:layout_marginLeft="10dp"
android:layout_marginLeft="5dp"
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="10dp"
android:layout_marginLeft="5dp"
android:text="@string/dummy_num"
android:textColor="#000000" />
<TextView
android:layout_marginLeft="10dp"
android:layout_marginLeft="5dp"
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="10dp"
android:layout_marginLeft="5dp"
android:text="@string/dummy_num"
android:textColor="@color/text_select" />
......@@ -52,7 +52,7 @@
<TableRow>
<TextView
android:layout_marginLeft="10dp"
android:layout_marginLeft="5dp"
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="10dp"
android:layout_marginLeft="5dp"
android:layout_span="1"
android:textStyle="bold"
android:text="@string/dummy_str"
......@@ -85,7 +85,7 @@
<TableRow>
<TextView
android:layout_marginLeft="10dp"
android:layout_marginLeft="5dp"
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="10dp"
android:layout_marginLeft="5dp"
android:text="@string/dummy_date"
android:textColor="@color/text_select" />
<TextView
android:layout_marginLeft="10dp"
android:layout_marginLeft="5dp"
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="10dp"
android:layout_marginLeft="5dp"
android:text="@string/dummy_str"
android:textColor="@color/text_select" />
</TableRow>
......@@ -119,7 +119,7 @@
<TableRow>
<TextView
android:layout_marginLeft="10dp"
android:layout_marginLeft="5dp"
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="10dp"
android:layout_marginLeft="5dp"
android:layout_span="3"
android:text="@string/dummy_str"
android:textColor="#000000" />
......
......@@ -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;
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment