Merge "NIU Actions: Hide button captions when feature is disabled" into sc-dev
This commit is contained in:
commit
2d12f20516
|
@ -34,6 +34,7 @@
|
||||||
android:layout_weight="1" />
|
android:layout_weight="1" />
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
|
android:id="@+id/layout_translate"
|
||||||
style="@style/GoOverviewActionButtonContainer">
|
style="@style/GoOverviewActionButtonContainer">
|
||||||
<ImageButton
|
<ImageButton
|
||||||
android:id="@+id/action_translate"
|
android:id="@+id/action_translate"
|
||||||
|
@ -46,10 +47,12 @@
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<Space
|
<Space
|
||||||
|
android:id="@+id/spacer_translate"
|
||||||
android:layout_width="@dimen/go_overview_button_container_margin"
|
android:layout_width="@dimen/go_overview_button_container_margin"
|
||||||
android:layout_height="1dp" />
|
android:layout_height="1dp" />
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
|
android:id="@+id/layout_listen"
|
||||||
style="@style/GoOverviewActionButtonContainer">
|
style="@style/GoOverviewActionButtonContainer">
|
||||||
<ImageButton
|
<ImageButton
|
||||||
android:id="@+id/action_listen"
|
android:id="@+id/action_listen"
|
||||||
|
@ -63,10 +66,12 @@
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<Space
|
<Space
|
||||||
|
android:id="@+id/spacer_listen"
|
||||||
android:layout_width="@dimen/go_overview_button_container_margin"
|
android:layout_width="@dimen/go_overview_button_container_margin"
|
||||||
android:layout_height="1dp" />
|
android:layout_height="1dp" />
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
|
android:id="@+id/layout_screenshot"
|
||||||
style="@style/GoOverviewActionButtonContainer">
|
style="@style/GoOverviewActionButtonContainer">
|
||||||
<ImageButton
|
<ImageButton
|
||||||
android:id="@+id/action_screenshot"
|
android:id="@+id/action_screenshot"
|
||||||
|
|
|
@ -16,6 +16,8 @@
|
||||||
|
|
||||||
package com.android.quickstep.views;
|
package com.android.quickstep.views;
|
||||||
|
|
||||||
|
import static android.view.View.GONE;
|
||||||
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.util.AttributeSet;
|
import android.util.AttributeSet;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
|
@ -54,11 +56,11 @@ public class GoOverviewActionsView extends OverviewActionsView<OverlayUICallback
|
||||||
if (getResources().getBoolean(R.bool.enable_niu_actions)) {
|
if (getResources().getBoolean(R.bool.enable_niu_actions)) {
|
||||||
findViewById(R.id.action_listen).setOnClickListener(this);
|
findViewById(R.id.action_listen).setOnClickListener(this);
|
||||||
findViewById(R.id.action_translate).setOnClickListener(this);
|
findViewById(R.id.action_translate).setOnClickListener(this);
|
||||||
findViewById(R.id.action_search).setOnClickListener(this);
|
|
||||||
} else {
|
} else {
|
||||||
findViewById(R.id.action_listen).setVisibility(View.GONE);
|
findViewById(R.id.layout_listen).setVisibility(GONE);
|
||||||
findViewById(R.id.action_translate).setVisibility(View.GONE);
|
findViewById(R.id.spacer_listen).setVisibility(GONE);
|
||||||
findViewById(R.id.action_search).setVisibility(View.GONE);
|
findViewById(R.id.layout_translate).setVisibility(GONE);
|
||||||
|
findViewById(R.id.spacer_translate).setVisibility(GONE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue