-2

リスト内のボタンをクリックしたときにシャーロックリストフラグメントを使用して派生したリストビューで画像ボタンを使用したい..次に、ダイアログフラグメントを表示したい..このために構文が必要..私のXmlファイルは

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/manage_stocks"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >

<TextView
    android:id="@+id/lname"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_marginLeft="10dp"
    android:layout_marginTop="5dp"
    android:gravity="left"
    android:textColor="@android:color/black"
    android:textAppearance="?android:attr/textAppearanceLarge"
    />

<TextView
    android:id="@+id/lysymbol"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@id/lname"
    android:layout_below="@id/lname"
    android:textColor="@android:color/black"
    android:textAppearance="?android:attr/textAppearanceMedium" />
<ImageButton
    android:id="@+id/alertbutton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:src="@drawable/alerts"/>
</RelativeLayout>

誰かが私がこの仕事をするのを手伝ってくれます

今後ともよろしくお願いいたします..

4

1 に答える 1

0

ここここを見て、カスタム DialogFragment を実装する方法を確認してください。

于 2013-02-25T15:06:55.910 に答える