Commit 0b12da8d by Lee Munkyeong

資料,ログイン,設定画面デザイン修正。

parent 684902ac
......@@ -110,8 +110,8 @@
<ImageButton
android:id="@+id/btn_operation_home"
style="@style/ToolBarIcon"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_width="27dp"
android:layout_height="27dp"
android:scaleType="fitCenter"
android:src="@drawable/btn_operation_home" />
......@@ -135,8 +135,8 @@
android:id="@+id/btn_common_content"
style="@style/ToolBarIcon"
android:scaleType="fitCenter"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_width="27dp"
android:layout_height="27dp"
android:src="@drawable/btn_common_content" />
<TextView
......@@ -160,8 +160,8 @@
<ImageButton
android:id="@+id/btn_communication_menu"
style="@style/ToolBarIcon"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_width="27dp"
android:layout_height="27dp"
android:scaleType="fitCenter"
android:layout_centerVertical="true"
android:src="@drawable/ic_communication_menu" />
......@@ -185,8 +185,8 @@
<ImageButton
android:id="@+id/btn_operation_print"
style="@style/ToolBarIcon"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_width="27dp"
android:layout_height="27dp"
android:scaleType="fitCenter"
android:layout_centerVertical="true"
android:src="@drawable/btn_operation_print" />
......@@ -209,9 +209,9 @@
<ImageButton
android:id="@+id/btn_setting"
style="@style/ToolBarIcon"
android:layout_width="30dp"
android:layout_width="27dp"
android:layout_height="27dp"
android:scaleType="fitCenter"
android:layout_height="30dp"
android:onClick="onClickSetting"
android:src="@drawable/ic_operation_setting" />
......
......@@ -95,8 +95,8 @@
<ImageButton
android:id="@+id/btn_operation_home"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_width="27dp"
android:layout_height="27dp"
android:background="@drawable/btn_operation_home"
/>
......@@ -120,8 +120,8 @@
<ImageButton
android:id="@+id/btn_common_content"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_width="27dp"
android:layout_height="27dp"
android:background="@drawable/btn_common_content" />
<TextView
......@@ -145,8 +145,8 @@
<ImageButton
android:id="@+id/btn_communication_menu"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_width="27dp"
android:layout_height="27dp"
android:scaleType="fitCenter"
android:background="@drawable/ic_communication_menu" />
......@@ -170,8 +170,8 @@
<ImageButton
android:id="@+id/btn_operation_print"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_width="27dp"
android:layout_height="27dp"
android:layout_centerVertical="true"
android:background="@drawable/btn_operation_print" />
......@@ -193,8 +193,8 @@
<ImageButton
android:id="@+id/btn_setting"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_width="27dp"
android:layout_height="27dp"
android:layout_centerVertical="true"
android:background="@drawable/ic_operation_setting"
android:onClick="onClickSetting" />
......
......@@ -3,7 +3,7 @@
android:id="@+id/linear_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/app_bg"
android:background="@color/operation_color"
>
<LinearLayout
......
......@@ -4,7 +4,7 @@
android:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/setting_bg"
android:background="@color/operation_color"
android:orientation="vertical"
android:padding="20dp" >
......
......@@ -2,7 +2,7 @@
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/app_bg" >
android:background="@color/operation_color" >
<ImageView
android:id="@+id/img_logo"
......
......@@ -1284,7 +1284,7 @@ public abstract class ABVAuthenticatedActivity extends ABVActivity implements Co
protected void setCommunicationImageButton() {
List<PushMessageDto> pushMessageDtoList = pushMessageLogic.getAllPushMessageList();
boolean existUnreadFlg = checkUnReadCommunication(pushMessageDtoList);
communicationButton.setImageResource(existUnreadFlg ? R.drawable.ic_communication_menu_with_badge : R.drawable.ic_communication_menu);
communicationButton.setImageResource(R.drawable.ic_communication_menu);
}
/**
......
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