0我在我的应用程序上使用 startActionMode(ActionMode)。
默认情况下,它会在栏上添加一个“完成”按钮,我想将其删除。
另外,如果有办法改变它的文本,我也想知道,导致与“完成”不同的描述可以使操作与它所做的行为相对应。
0我在我的应用程序上使用 startActionMode(ActionMode)。
默认情况下,它会在栏上添加一个“完成”按钮,我想将其删除。
另外,如果有办法改变它的文本,我也想知道,导致与“完成”不同的描述可以使操作与它所做的行为相对应。
我同意@CommonsWare 的观点,即隐藏“完成”按钮是无效的设计。
但是,有些客户希望删除此按钮,我可以理解复选标记可能会给用户造成混淆,因为在某些情况下它实际上什么都不做。
所以,这里是如何删除带有样式的按钮:
<style name="AppTheme" parent="android:Theme.Holo">
<item name="android:actionModeCloseButtonStyle">@style/NoCloseButton</item>
</style>
<style name="NoCloseButton" parent="@android:style/Widget.ActionButton.CloseMode">
<item name="android:visibility">gone</item>
</style>
如果您使用的是 ActionBarSherlock,您可以使用以下样式隐藏“完成”按钮:
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="NoCloseButton" parent="@style/Widget.Sherlock.ActionButton.CloseMode">
<item name="android:visibility">gone</item>
</style>
<style name="AppBaseTheme" parent="Theme.Sherlock.Light.DarkActionBar">
<item name="actionModeCloseButtonStyle">@style/NoCloseButton</item>
</style>
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
</style>
</resources>
请确保将此样式放在每个样式目录中(values、value-v11、values-v14)。之后,您可以使用以下代码创建自定义菜单:
LayoutInflater inflater = LayoutInflater.from(getSherlockActivity());
View actionView = inflater.inflate(R.layout.actionmode, null);
ActionMode am = getSherlockActivity().startActionMode(mActionModeCallback);
am.setCustomView(actionView);
即使我被困住了,我也找到了解决它的方法。
int doneButtonId = Resources.getSystem().getIdentifier("action_mode_close_button", "id", "android");
LinearLayout layout = (LinearLayout) findViewById(doneButtonId);
TextView doneview = (TextView) layout.getChildAt(1);
doneview.setText("");
希望这可以帮助!!
感谢马蒂亚斯强盗,它的工作原理。但我更喜欢使用“隐形”:
<style name="NoCloseButtonActionModeStyle">
<item name="android:visibility">invisible</item>
</style>
因此 ActionMode 中的自定义视图位置不会缩进到父级左侧。
有人找到屏幕宽度解决方案吗?– Mayur R. Amipara 2015 年 6 月 5 日在 10:27
覆盖您的自定义视图的 onMeasure,将其宽度设置为屏幕宽度。在 onLayout 中,重新布局您的子视图。
这个对我有用。
import android.content.Context;
import android.util.AttributeSet;
import android.util.DisplayMetrics;
import android.view.View;
import android.widget.RelativeLayout;
import com.android.gallery3d.R;
public class SelectActionModeCustomView extends RelativeLayout {
private View mLeftButton;
private View mRightButton;
private int mScreenWidth;
private static final String TAG = "SelectActionView";
public SelectActionModeCustomView(Context context, AttributeSet attrs) {
super(context, attrs);
DisplayMetrics metrics = context.getResources().getDisplayMetrics();
mScreenWidth = metrics.widthPixels;
}
@Override
protected void onFinishInflate() {
super.onFinishInflate();
mLeftButton = findViewById(R.id.cancel);
mRightButton = findViewById(R.id.select_action);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
this.setMeasuredDimension(mScreenWidth, this.getMeasuredHeight());
}
@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
super.onLayout(changed, l, t, r, b);
int childLeft = 0;
int childTop = 0;
childLeft = 0;
childTop = ((b - t) - mLeftButton.getMeasuredHeight()) / 2;
mLeftButton.layout(childLeft, childTop,
childLeft + mLeftButton.getMeasuredWidth(),
childTop + mLeftButton.getMeasuredHeight());
childLeft = (r - l) - mRightButton.getMeasuredWidth();
childTop = ((b - t) - mRightButton.getMeasuredHeight()) / 2;
mRightButton.layout(childLeft, childTop,
childLeft + mRightButton.getMeasuredWidth(),
childTop + mRightButton.getMeasuredHeight());
}
}