actionBarsherlock的自定义布局中的ImageButton(ImageView)

时间:2012-10-15 18:44:17

标签: android android-actionbar actionbarsherlock android-custom-view

我正在使用actionbarsherlock。

为了在底部(action modes on bottom)获取动作模式,我使用

android:uiOptions="splitActionBarWhenNarrow"

但是我需要在主操作栏上添加一个按钮,所以我使用自定义视图。

    View customNav = LayoutInflater.from(this).inflate(R.layout.custom_view, null);      
    getSupportActionBar().setCustomView(customNav, new 
         ActionBar.LayoutParams(Gravity.RIGHT));
    getSupportActionBar().setDisplayShowCustomEnabled(true);

这是custom_view.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:gravity="center"
    android:orientation="horizontal"
>

<ImageButton
    android:id="@+id/btnMore"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/ic_action_day"
    android:onClick="onMoreClick"/>

如果我使用具有相同属性的ImageButton或ImageView,它不会满足,所以我将谈论ImageButton。

如果我使用ImageButton,我会得到我想要的,除了那个背景是灰色的。 enter image description here

如果我在以前的custom_view.xml中添加一行,以获得transperent背景(或使用ImageView)

android:background="#00000000"

图标中的alpha将被“裁剪”,按钮的大小将会改变。 enter image description here

问题是。如何获得尺寸与第一张图片(默认灰色背景)相同但具有多种背景的按钮?

解决问题的方法之一是使按钮背景的颜色与动作条的颜色相同,它看起来像是transperent,但我不认为这是一个很好的解决方案。

3 个答案:

答案 0 :(得分:0)

您可以使用透明背景的图像。它可以在photoshop中完成。

答案 1 :(得分:0)

您是否考虑过使用ImageView而不是ImageButton?只需在imageview中设置您需要的图像,并使用onclicklistener来检测您对ImageButton所做的点击。

此外,您还可以指定ImageButton的宽度并根据需要设置填充(如果您想使用android:background =“#00000000”)。

答案 2 :(得分:0)

我认为您可以添加按钮

机器人:背景= “yourimagethere”;或者android:background = NULL

它将解决问题