gpt4 book ai didi

java - 在 Android Studio 中使用 Spinner 添加图像

转载 作者:行者123 更新时间:2023-12-01 11:25:39 25 4
gpt4 key购买 nike

我正在尝试根据所选的 Spinner 元素在 MainActivity 中加载图像。

因此,如果我的微调器在布局中包含两个 channel 名称,并且这些名称存储在数组channels = [“skysports”,“premierlive”]中

我已经定义了我的 ImageView:

ImageView logo = (ImageView) findViewById(R.id.logo);

在创建 Spinner 时,我正在使用此 channel 数组,并从那里调用

getLogo(channels[i]); 

其中channels[i]是当前选择的Spinner元素。

最后,我尝试在 getLogo 中使用 switch-case 实现此图像切换:

public void getLogo(String channel){
switch(channel){
case ("skysports"):
logo.setImageResource(R.drawable.skysports);
break;
case ("premierlive"):
logo.setImageResource(R.drawable.premierlive);
break;
}
}

这一切给了我

java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.ImageView.setImageResource(int)' on a null object reference

我该怎么办? TNx

编辑:

Activity 主线:

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">

<Spinner
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/spinnerMain"
android:paddingLeft="30dp"
android:paddingRight="10dp"
android:paddingTop="2dp"
android:paddingBottom="2dp"
android:clickable="true"
android:touchscreenBlocksFocus="true"
android:layout_alignParentTop="true"
android:visibility="visible"
android:textSize="@android:dimen/app_icon_size"
android:layout_centerVertical="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/logo"
android:layout_centerHorizontal="true"
android:layout_marginTop="20dp" />

</RelativeLayout>

和主要 Activity :

   public class MainActivity extends ActionBarActivity implements View.OnClickListener {
String[] channels;
String channel;
Spinner sp;
ImageView logo;


protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ImageView logo = (ImageView) findViewById(R.id.logo);
sp = (Spinner) findViewById(R.id.spinnerMain);
addSpinner();

public void addSpinner(){
channels = getChannels();
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, R.layout.spinner_item, channels);
sp.setAdapter(adapter);
sp.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
int index = parent.getSelectedItemPosition();
getLogo(channels[index]);
}
});
}
}

}

最佳答案

我在您的 Activity 中提供了一个私有(private)字段 Logo ,并在 onCreate 方法中提供了一个名为 Logo 的局部变量,它是已初始化的变量。在 onCreate 方法中,您需要初始化要在类的其他方法中使用的私有(private)字段,而不是

ImageView logo = (ImageView) ...

你应该有

logo = (ImaView) ...

关于java - 在 Android Studio 中使用 Spinner 添加图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30824074/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com