3

iOS 実装

私は Android が初めてで、ツールチップが埋め込まれた Android ボタン要素を持つことが可能かどうか疑問に思っていましたか? ボタンに画像を表示したいと思います。これを押すと、ある種のダイアログ/ヒントオーバーレイが開きます。つまり、ホバー ツールチップではなく、ボタンのクリック以外の場所に移動するクリック可能な要素です。誰かがこれのベストプラクティスについて私を導くことができれば、それは素晴らしいことです!

<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" />
4

1 に答える 1

1

(ビューを別の上に設定することについての最後のコメントに応えて。)

シンプルです。次のように複数の LinearLayouts を使用できます。

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

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

    <ImageButton
        ... />

</LinearLayout>

LinearLayout (および場合によっては TextView) には、メイン機能を実行する OnClickListener が 1 つ必要です。ImageButton には、ツールチップ用に 2 つ目の OnClickListener があります。

または、 RelativeLayoutを使用して、独自の OnClickListener を持つ TextView の上に OnClickListener を持つツールチップ ImageButton を配置することもできます。

必要に応じて、これらのカスタム ビューのいずれかを 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>
于 2012-05-08T22:24:33.647 に答える