Android按钮工具提示

时间:2012-05-08 21:08:31

标签: android

iOS implemenatation

我是Android新手,我想知道是否有可能拥有一个嵌入式工具提示的Android按钮元素?我想在按钮上有一个图像,按下时会打开一个对话框/ tootip叠加层。所以不是悬停工具提示,而是一个可点击元素,它位于按钮单击所在位置以外的某个位置。如果有人可以指导我这方面的最佳实践那就太棒了!

<LinearLayout android:orientation="vertical"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:gravity="center" 
    android:paddingLeft="5dip" 
    android:paddingRight="5dip">

    <Button android:id="@+id/settings_predefined_message_btn"
        android:layout_width="fill_parent"  
        android:layout_height="wrap_content"
        android:text="@string/settings_predefined_messages"
        android:background="@drawable/selector_longbutton_witharrow" 
        style="@style/ButtonTextStyle"
        android:layout_marginTop="10dip" 
        android:gravity="center" />

1 个答案:

答案 0 :(得分:1)

(回应你最后关于在另一个上面设置视图的评论。)

很简单,您可以使用多个LinearLayouts:

<LinearLayout
    android:id="@+id/tab1"
    ... />

    <TextView
        android:text="Predefined Message"
        ... />

    <ImageButton
        ... />

</LinearLayout>

您的LinearLayout(可能是TextView)应该有一个OnClickListener来执行主要功能,ImageButton将有第二个OnClickListener用于工具提示。

您可以使用RelativeLayout将带有OnClickListener的工具提示ImageButton定位在TextView顶部,并使用自己的OnClickListener。

如果您愿意,可以将这些自定义视图中的任何一个传递给ActionBar来为您构建选项卡。希望有所帮助。

<强>加成

(丑陋!)RelativeLayout示例:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    >

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="A long text sample"
        />

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignRight="@+id/button1"
        android:layout_marginRight="10dp"
        android:text="i"
        />

</RelativeLayout>