- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试从 API 数据在 Android 3.2 版中创建 Spinner。编写所有代码后,我得到了致命异常。我还创建了一个 TOAST 来显示弹出我的 Api 数据,但没有显示弹出窗口,Spinner 获得空值。
这是我的 API 数据
[
{
"oid": "PCATxxx008",
"pcat_text": "008",
"pcat_name": "MDSP Project (Cyclone Center)",
"pcat_actv": "1"
},
{
"oid": "PCATxxx001",
"pcat_text": "001",
"pcat_name": "Plastic",
"pcat_actv": "1"
},
{
"oid": "PCATxxx002",
"pcat_text": "002",
"pcat_name": "PVC",
"pcat_actv": "1"
},
{
"oid": "PCATxxx003",
"pcat_text": "003",
"pcat_name": "Household",
"pcat_actv": "0"
},
{
"oid": "PCATxxx004",
"pcat_text": "004",
"pcat_name": "Furniture",
"pcat_actv": "0"
},
{
"oid": "PCATxxx005",
"pcat_text": "005",
"pcat_name": "LGED",
"pcat_actv": "1"
},
{
"oid": "PCATxxx006",
"pcat_text": "006",
"pcat_name": "Export",
"pcat_actv": "1"
},
{
"oid": "PCATxxx007",
"pcat_text": "007",
"pcat_name": "Tender",
"pcat_actv": "1"
}
]
这是 Java 接口(interface)
import java.util.List;
import retrofit2.Call;
import retrofit2.http.GET;
public interface api {
String BASE_URL ="http://192.168.1.95:55069/api/";
@GET("Category")
Call<List<Category>> getCategory();
}
这是类别类
public class Category {
private String oid;
private String pcat_text;
private String pcat_name;
private String pcat_actv;
public Category(String oid, String pcat_text, String pcat_name, String pcat_actv) {
this.oid = oid;
this.pcat_text = pcat_text;
this.pcat_name = pcat_name;
this.pcat_actv = pcat_actv;
}
public String getOid() {
return oid;
}
public String getPcat_text() {
return pcat_text;
}
public String getPcat_name() {
return pcat_name;
}
public String getPcat_actv() {
return pcat_actv;
}
}
主 Activity
public class MainActivity extends AppCompatActivity implements NavigationView.OnNavigationItemSelectedListener {
DrawerLayout drawerLaout;
ActionBarDrawerToggle toggle;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
drawerLaout = findViewById(R.id.drawerId);
NavigationView navigationView = findViewById(R.id.navigationId);
navigationView.setNavigationItemSelectedListener(this);
toggle = new ActionBarDrawerToggle(this,drawerLaout,R.string.nav_open,R.string.nav_close);
drawerLaout.addDrawerListener(toggle);
toggle.syncState();
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
Retrofit retrofit = new Retrofit.Builder()
.baseUrl(api.BASE_URL)
.addConverterFactory(GsonConverterFactory.create()) //Here we are using the GsonConverterFactory to directly convert json data to object
.build();
//creating the api interface
api api = retrofit.create(api.class);
//now making the call object
//Here we are using the api method that we created inside the api interface
Call<List<Category>> call = api.getCategory();
//then finallly we are making the call using enqueue()
//it takes callback interface as an argument
//and callback is having two methods onRespnose() and onFailure
//if the request is successfull we will get the correct response and onResponse will be executed
//if there is some error we will get inside the onFailure() method
call.enqueue(new Callback<List<Category>>() {
@Override
public void onResponse(Call<List<Category>> call, Response<List<Category>> response) {
List<Category> Category = response.body();
}
@Override
public void onFailure(Call<List<Category>> call, Throwable t) {
Toast.makeText(getApplicationContext(), t.getMessage(), Toast.LENGTH_LONG+5000).show();
}
});
}
CollectionActivity 我的 Spinner 应该在其中显示数据
public class CollectionActivity extends AppCompatActivity {
private Spinner spinner1, spinner2;
private Button btnSubmit;
DatePicker picker;
TextView dateText;
EditText dateView;
DatePickerDialog.OnDateSetListener setListener;
private static final String CHANNEL_ID = "Notification";
private static final String CHANNEL_NAME = "Test Notification";
private static final String CHANNEL_DESC = "Test Notification Desc";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_collection);
addItemsOnSpinner2();
addListenerOnButton();
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){
NotificationChannel channel = new NotificationChannel(CHANNEL_ID, CHANNEL_NAME, NotificationManager.IMPORTANCE_DEFAULT);
channel.setDescription(CHANNEL_DESC);
NotificationManager manager = getSystemService(NotificationManager.class);
manager.createNotificationChannel(channel);
}
dateText = findViewById(R.id.dateText);
dateView = findViewById(R.id.dateView);
Calendar calendar = Calendar.getInstance();
final int year = calendar.get(Calendar.YEAR);
final int month = calendar.get(Calendar.MONTH);
final int day = calendar.get(Calendar.DAY_OF_MONTH);
dateView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v){
DatePickerDialog datePickerDialog = new DatePickerDialog(
CollectionActivity.this,android.R.style.Theme_Holo_Light_Dialog_MinWidth
,setListener,year,month,day);
datePickerDialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
datePickerDialog.show();
}
});
setListener = new DatePickerDialog.OnDateSetListener() {
@Override
public void onDateSet(DatePicker view, int year, int month, int dayOfMonth) {
month = month + 1;
String date = day+"/"+month+"/"+year;
dateView.setText(date);
}
};
addListenerOnSpinnerItemSelection();
}
// add items into spinner dynamically
public void addItemsOnSpinner2() {
spinner2 = (Spinner) findViewById(R.id.spinner2);
//List<String> list = new ArrayList<String>();
//list.add("LGED");
//list.add("PVC");
//list.add("Plastic");
Retrofit retrofit =new Retrofit.Builder()
.baseUrl(api.BASE_URL)
.addConverterFactory(GsonConverterFactory.create())
.build();
api api =retrofit.create(api.class);
Call<List<Category>> call = api.getCategory();
call.enqueue(new Callback<List<Category>>() {
@Override
public void onResponse(Call<List<Category>> call, Response<List<Category>> response) {
List<Category> CategoryList = response.body();
String[] Categorys = new String[CategoryList.size()];
for(int i=0; i< CategoryList.size(); i++){
Categorys[i]= CategoryList.get(i).getPcat_name();
ArrayAdapter<String> spinnerArrayAdapter = new ArrayAdapter<String>(CollectionActivity.this, android.R.layout.simple_spinner_item, Categorys);
spinnerArrayAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); // The drop down view
spinner2.setAdapter(spinnerArrayAdapter);
}
/*ArrayAdapter<String> dataAdapter = new ArrayAdapter<String>(this,
android.R.layout.simple_spinner_item, Categorys);
dataAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
spinner2.setAdapter(dataAdapter);*/
}
@Override
public void onFailure(Call<List<Category>> call, Throwable t) {
Toast.makeText(getApplicationContext(), t.getMessage(), Toast.LENGTH_SHORT).show();
}
});
}
public void addListenerOnSpinnerItemSelection() {
spinner1 = (Spinner) findViewById(R.id.spinner1);
spinner1.setOnItemSelectedListener(new CustomOnItemSelectedListener());
}
// get the selected dropdown list value
public void addListenerOnButton() {
spinner1 = (Spinner) findViewById(R.id.spinner1);
spinner2 = (Spinner) findViewById(R.id.spinner2);
btnSubmit = (Button) findViewById(R.id.btnSubmit);
dateView =(EditText)findViewById(R.id.dateView);
//picker= (DatePicker)findViewById(R.id.date);
btnSubmit.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(CollectionActivity.this,
"You have selected : " +
"\nLocation : "+ String.valueOf(spinner1.getSelectedItem()) +
"\nCategory : "+ String.valueOf(spinner2.getSelectedItem()) +
//"\nSelected Date: "+ picker.getDayOfMonth()+"/"+ (picker.getMonth() + 1)+"/"+picker.getYear(),
"\nDate : " + dateView.getText().toString(),
Toast.LENGTH_LONG).show();
addNotifications();
}
});
}
private void addNotifications() {
spinner1 = (Spinner) findViewById(R.id.spinner1);
spinner2 = (Spinner) findViewById(R.id.spinner2);
dateView =(EditText)findViewById(R.id.dateView);
NotificationCompat.Builder builder =
new NotificationCompat.Builder(this,CHANNEL_ID)
.setSmallIcon(R.drawable.ic_sms_black_24dp)
.setContentTitle("New Collection Added")
.setContentText(
"You have selected : " +
"\nLocation : "+ String.valueOf(spinner1.getSelectedItem()) +
"\nCategory : "+ String.valueOf(spinner2.getSelectedItem()) +
"\nDate : " + dateView.getText().toString()
)
.setPriority(NotificationCompat.PRIORITY_DEFAULT);
NotificationManagerCompat mNotificationMgr = NotificationManagerCompat.from(this);
mNotificationMgr.notify(1,builder.build());
}
}
错误
AndroidRuntime: FATAL EXCEPTION: main
Process: com.example.TEST, PID: 23249
java.lang.NullPointerException: Attempt to invoke interface method 'int java.util.List.size()' on a null object reference
at com.example.talukdergroup.CollectionActivity$3.onResponse(CollectionActivity.java:114)
at retrofit2.ExecutorCallAdapterFactory$ExecutorCallbackCall$1$1.run(ExecutorCallAdapterFactory.java:70)
at android.os.Handler.handleCallback(Handler.java:873)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:193)
at android.app.ActivityThread.main(ActivityThread.java:6669)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:493)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:858)
我已经给出了我编码的所有内容,当我输入时,我的 CollectionActivity 应用程序崩溃了。我想知道我在哪里犯了这个愚蠢的错误。
最佳答案
尝试使用您的 CollectionActivity 的以下代码,希望它会起作用。使用前应检查列表的空值。
import android.app.DatePickerDialog;
import android.app.NotificationChannel;
import android.app.NotificationManager;
import android.graphics.Color;
import android.graphics.drawable.ColorDrawable;
public class CollectionActivity extends AppCompatActivity {
private Spinner spinner1, spinner2;
private Button btnSubmit;
DatePicker picker;
TextView dateText;
EditText dateView;
DatePickerDialog.OnDateSetListener setListener;
private static final String CHANNEL_ID = "Notification";
private static final String CHANNEL_NAME = "Test Notification";
private static final String CHANNEL_DESC = "Test Notification Desc";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_collection);
addItemsOnSpinner2();
addListenerOnButton();
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
NotificationChannel channel = new NotificationChannel(CHANNEL_ID, CHANNEL_NAME, NotificationManager.IMPORTANCE_DEFAULT);
channel.setDescription(CHANNEL_DESC);
NotificationManager manager = getSystemService(NotificationManager.class);
manager.createNotificationChannel(channel);
}
dateText = findViewById(R.id.dateText);
dateView = findViewById(R.id.dateView);
Calendar calendar = Calendar.getInstance();
final int year = calendar.get(Calendar.YEAR);
final int month = calendar.get(Calendar.MONTH);
final int day = calendar.get(Calendar.DAY_OF_MONTH);
dateView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
DatePickerDialog datePickerDialog = new DatePickerDialog(
CollectionActivity.this, android.R.style.Theme_Holo_Light_Dialog_MinWidth
, setListener, year, month, day);
datePickerDialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
datePickerDialog.show();
}
});
setListener = new DatePickerDialog.OnDateSetListener() {
@Override
public void onDateSet(DatePicker view, int year, int month, int dayOfMonth) {
month = month + 1;
String date = day + "/" + month + "/" + year;
dateView.setText(date);
}
};
addListenerOnSpinnerItemSelection();
}
// add items into spinner dynamically
public void addItemsOnSpinner2() {
spinner2 = (Spinner) findViewById(R.id.spinner2);
//List<String> list = new ArrayList<String>();
//list.add("LGED");
//list.add("PVC");
//list.add("Plastic");
Retrofit retrofit = new Retrofit.Builder()
.baseUrl(api.BASE_URL)
.addConverterFactory(GsonConverterFactory.create())
.build();
api api = retrofit.create(api.class);
Call<List<Category>> call = api.getCategory();
call.enqueue(new Callback<List<Category>>() {
@Override
public void onResponse(Call<List<Category>> call, Response<List<Category>> response) {
List<Category> CategoryList = response.body();
if (CategoryList != null && CategoryList.size() > 0) {
String[] Categorys = new String[CategoryList.size()];
for (int i = 0; i < CategoryList.size(); i++) {
Categorys[i] = CategoryList.get(i).getPcat_name();
ArrayAdapter<String> spinnerArrayAdapter = new ArrayAdapter<String>(CollectionActivity.this, android.R.layout.simple_spinner_item, Categorys);
spinnerArrayAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); // The drop down view
spinner2.setAdapter(spinnerArrayAdapter);
}
}
/*ArrayAdapter<String> dataAdapter = new ArrayAdapter<String>(this,
android.R.layout.simple_spinner_item, Categorys);
dataAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
spinner2.setAdapter(dataAdapter);*/
}
@Override
public void onFailure(Call<List<Category>> call, Throwable t) {
Toast.makeText(getApplicationContext(), t.getMessage(), Toast.LENGTH_SHORT).show();
}
});
}
public void addListenerOnSpinnerItemSelection() {
spinner1 = (Spinner) findViewById(R.id.spinner1);
spinner1.setOnItemSelectedListener(new CustomOnItemSelectedListener());
}
// get the selected dropdown list value
public void addListenerOnButton() {
spinner1 = (Spinner) findViewById(R.id.spinner1);
spinner2 = (Spinner) findViewById(R.id.spinner2);
btnSubmit = (Button) findViewById(R.id.btnSubmit);
dateView = (EditText) findViewById(R.id.dateView);
//picker= (DatePicker)findViewById(R.id.date);
btnSubmit.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(CollectionActivity.this,
"You have selected : " +
"\nLocation : " + String.valueOf(spinner1.getSelectedItem()) +
"\nCategory : " + String.valueOf(spinner2.getSelectedItem()) +
//"\nSelected Date: "+ picker.getDayOfMonth()+"/"+ (picker.getMonth() + 1)+"/"+picker.getYear(),
"\nDate : " + dateView.getText().toString(),
Toast.LENGTH_LONG).show();
addNotifications();
}
});
}
private void addNotifications() {
spinner1 = (Spinner) findViewById(R.id.spinner1);
spinner2 = (Spinner) findViewById(R.id.spinner2);
dateView = (EditText) findViewById(R.id.dateView);
NotificationCompat.Builder builder =
new NotificationCompat.Builder(this, CHANNEL_ID)
.setSmallIcon(R.drawable.ic_sms_black_24dp)
.setContentTitle("New Collection Added")
.setContentText(
"You have selected : " +
"\nLocation : " + String.valueOf(spinner1.getSelectedItem()) +
"\nCategory : " + String.valueOf(spinner2.getSelectedItem()) +
"\nDate : " + dateView.getText().toString()
)
.setPriority(NotificationCompat.PRIORITY_DEFAULT);
NotificationManagerCompat mNotificationMgr = NotificationManagerCompat.from(this);
mNotificationMgr.notify(1, builder.build());
}
}
关于android - 在 Android Studio 中从 Api 创建 Spinner,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56911599/
所以我有一个微调器,我成功地更改了所选项目的颜色,但我无法更改下拉菜单中项目的颜色 这是我的 spinner_layout.xml 这是我的 样式.xml @style/Spin
我需要做的是,如果选择了微调器 1 中的某个项目,它需要在微调器 01 中显示某个数组例如如果微调器一个选定的项目是红色微调器 01 需要显示 level_array 作为微调器 01 的下拉选项,否
我想在点击微调器外部后关闭 Android 微调器。这可能吗? 最佳答案 我在这方面运气不错,即使它不能完全奏效。 Spinner 适配器的获取 View : public View getView(
我正在使用 eneter 框架来处理我的 android 应用程序中的通信;问题是当我试图填充微调器时,将适配器设置为微调器会导致未定义的异常 这里是代码 public void populateSp
我在 xml 文件中有一个微调器,宽度和高度设置为 wrap_content,我将背景设置为微调器, 文本居中显示,如果我在 dp 或 fill_parent 中设置宽度,则文本显示为左对齐,但当微调
我有一个微调器 onItemSelect 我需要根据第一个选择打开另一个微调器。这是代码......我能够给第一个微调器充气但是在选择一个条目时没有任何反应 Spinner filterSpinner
当我打开 TalkBack 时,在微调器中做出选择后,焦点会立即返回到屏幕顶部(工具栏)。我希望在用户选择后立即将焦点放在微调器上。 我已经尝试将微调器设置为可聚焦: spinner.setFocus
我知道已经有大约一百万个主题,但请听我说完。 标题说明了一切,当我在微调器 1 中选择一个项目时,微调器 2 会获得一个特定的选项列表供您选择(然后将用于显示信息)。它本质上是一本小型通讯录。 *更新
我正在为 Android 构建一个有两个微调器的应用程序。第一个有一系列选择。我有一些代码可以更改第二个微调器的值,但数组在第二个微调器中永远不会改变。我检查过,selectedValue 确实等于所
我有一个 xml 布局文件,其中包含一些小部件,包括一个 Spinner 我想在微调器中显示一个字符串列表,该列表是在运行时作为函数的结果生成的,因此它不能在 arrays.xml 中。 我试过: S
spinner 没有根据另一个 spinner selection 填充,我已经研究了好几个小时了,仍然无法解决问题,没有错误洛格卡特。提前致谢。 这是我的代码 ArrayAdapter adapt
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 6 年前。 Improve this qu
我介绍一个Spinner在我的小部件中,每次我从中选择不同的值时,我都想执行一些操作。 是否可以? 我好像只收到事件 on_press和 on_release ,但在做出不同值(value)的选择时,
这是一个应用程序运行中的简单 gif,以显示我的意思:Video Gif here 我有一个 Spinner,这是我的 XML 代码: 我遵循了一些教程并浏览了此处,以使用 parse.com 动态
我有一个包含 1 个微调器的“发票”登记 Activity 。在这个 Spinner 中包含带有 IDCard 的卡片注册、标题和描述(保存在数据库的“Card”表中)。当我将此“发票”记录保存在“发
我在我的元素中实现了 mat-spinner,但它只有很少的可配置更改,例如颜色、旋转模式。我想在微调器中包含品牌/公司 Logo 的图像图标,我该如何实现? 以下是 Stackblitz 链接: h
在处理 Android Honeycomb 项目时,我偶然发现了一个有趣的问题。如下图所示,在对话框中展开 Spinner 时,底部的导航栏与它重叠。因此,无法选择底部的元素。 为了解决这个问题,我尝
当我在第一个微调器中选择中国作为国家/地区时,看到我想要的,所以我希望第二个微调器必须显示中国的所有州,这是通过我的代码完成的……但是……!我的查询是,当我从第二个微调器中选择状态时,它会自动将其设置
我正在尝试为应用创建一个简单的设置页面。 我想创建一个对象列表,我在 XML 文件中定义了其布局。 在这些对象的布局中有一个标题 TextView、一个帮助 TextView 和一个 Spinner。
我正面临这个问题,已经阅读了很多问题/答案但无法解决。 我有一个带有微调器的 ListView(用户必须为该行中的产品选择一个数量),但是当项目多于 View 并且在微调器中选择一个数字后滚动 Lis
我是一名优秀的程序员,十分优秀!