我正在使用导航抽屉创建我的第一个Android应用程序,我的大多数页面都是片段。每个页面都包含几个ImageButtons。
我的目标是让用户单击一个ImageButton,然后显示一个带有各自名称的“弹出”图像列表。当用户选择图像时,ImageButton的src应该成为该图像。
有关如何实现这一目标的任何提示?谢谢!
这是我的一个片段:
public class FragmentAnubis extends Fragment {
View myView;
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
myView = inflater.inflate(R.layout.god_anubis, container, false);
return myView;
}
这是相应的布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent" android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="100">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:orientation="horizontal"
android:layout_weight="100">
<ImageButton
android:id="@+id/imageStarterItem"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:adjustViewBounds="true"
android:padding="7dp"
android:background="@null"
android:scaleType="fitCenter"
app:srcCompat="@drawable/ah_puch" />
<ImageButton
android:id="@+id/imageRelic1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:adjustViewBounds="true"
android:padding="7dp"
android:background="@null"
android:scaleType="fitCenter"
app:srcCompat="@drawable/ah_muzen_cab" />
<ImageButton
android:id="@+id/imageRelic2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:adjustViewBounds="true"
android:padding="7dp"
android:background="@null"
android:scaleType="fitCenter"
app:srcCompat="@drawable/agni" />
</LinearLayout>
</LinearLayout>
答案 0 :(得分:0)
首先,删除不必要的根LinearLayout。
我猜您使用DialogFragment来显示图像列表。在onclick处理程序获取图像源并发送它抛出事件总线 - Rx事件总线或GreenRobots事件总线https://github.com/greenrobot/EventBus
在源活动中,您可以捕获所有事件并将源设置为第一个按钮