我想在列表视图中使用图像按钮,当我单击列表中的按钮时,该按钮是使用夏洛克列表片段派生的。然后我想显示一个对话框片段。为此,我想要语法。我的 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>
一些身体帮助我完成这项任务
感谢您在未来的任何帮助..