- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 gridview 中设置来自 jsonwebservice 的图像和文本,但显示此错误
日志类别
AudioCategoty.Java
public class AudioCategory extends AppCompatActivity {
Toolbar toolbar_home;
// ImageView imgarrorback,imghomeicon;
static final String TAG = AudioCategory.class.getSimpleName();
static String URL = "http://eonion.in/vimalsagarji/audio/getallcategory";
static String ImgURL="http://eonion.in/vimalsagarji/static/audiocategory/";
ArrayList<String> listName;
ArrayList<String> listIcon;
ProgressDialog pd;
String strImageUrl="";
static Bitmap bitmap=null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.content_audio_category);
toolbar_home = (Toolbar) findViewById(R.id.toolbar_audio);
setSupportActionBar(toolbar_home);
JsonTask jsonTask = new JsonTask();
jsonTask.execute(URL,ImgURL);
}
private class JsonTask extends AsyncTask<String,String,String> {
@Override
protected void onPreExecute() {
super.onPreExecute();
pd=new ProgressDialog(AudioCategory.this);
pd.setMessage("Please Wait");
pd.setCancelable(false);
pd.setIndeterminate(false);
pd.setCanceledOnTouchOutside(false);
pd.show();
}
@Override
protected String doInBackground(String... params) {
String strUrl=params[0];
String ImageURL=params[1];
try{
JSONObject jsonObject=JSONParser.getJsonFromUrl(strUrl);
for (int i=0; i<jsonObject.length() ;i++){
JSONArray array=jsonObject.getJSONArray("data");
for (int j=0;j<array.length();j++){
JSONObject object=array.getJSONObject(j);
String strName=object.getString("Name");
String strCategoryIcon=object.getString("CategoryIcon");
strImageUrl=ImageURL+strCategoryIcon;
String strImagename=strImageUrl.substring(strImageUrl.lastIndexOf("/")+1);
downloadIcon(strImageUrl,strImagename);
listName.add(strName);
listIcon.add(strCategoryIcon);
Log.d(TAG, "list Id data:" + listName);
Log.d(TAG, "list Id data:" + listIcon);
}
}
}catch (Exception e){
e.printStackTrace();
}
return null;
}
@Override
protected void onPostExecute(String s) {
super.onPostExecute(s);
if (pd != null) {
pd.dismiss();
}
GridView gridView = (GridView)findViewById(R.id.grid_audio);
if (gridView != null) {
CustomAdpter adpter = new CustomAdpter(getApplicationContext(), R.layout.custom_audio_gridview, listName);
gridView.setAdapter(adpter);
}
/*gridView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
*//* String strlitemTitle=listTitle.toString();
String strlistDescription=listDescription.toString();
String strlistAddress=listAdrees.toString();
String strlistDate=listDate.toString();*//*
String strlitemTitle = (String) ((TextView) view.findViewById(R.id.txtTitle)).getText();
String strlistDescription = (String) ((TextView) view.findViewById(R.id.txtDescription)).getText();
String strlistDate = (String) ((TextView) view.findViewById(R.id.txtDate)).getText();
Intent intent = new Intent(getApplicationContext(), ThisMonthInformation_SubActivity.class);
intent.putExtra("listTitle", strlitemTitle);
intent.putExtra("listDescription", strlistDescription);
intent.putExtra("listDate", strlistDate);
startActivity(intent);
}
});*/
}
}
private void downloadIcon(String strImageUrl, String strImagename) {
File fileWithMyDir = getApplicationContext().getFilesDir();
try {
java.net.URL url = new URL(strImageUrl);
File file = new File(fileWithMyDir.getAbsolutePath() + "/" + strImagename);
System.out.println("image path from service" + fileWithMyDir.getAbsolutePath() + "/" + strImagename);
URLConnection ucon = url.openConnection();
InputStream is = ucon.getInputStream();
BufferedInputStream bis = new BufferedInputStream(is);
ByteArrayBuffer baf = new ByteArrayBuffer(50);
int current = 0;
while ((current = bis.read()) != -1) {
baf.append((byte) current);
}
FileOutputStream fos = new FileOutputStream(file);
fos.write(baf.toByteArray());
fos.close();
} catch (Exception e) {
e.printStackTrace();
}
}
public class CustomAdpter extends ArrayAdapter<String> {
List<String> items;
Context context;
int resource;
public CustomAdpter(Context context, int resource, List<String> items) {
super(context, resource, items);
this.context = context;
this.resource = resource;
this.items = items;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
ViewHolder holder;
if (convertView == null) {
holder = new ViewHolder();
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = inflater.inflate(resource, null, false);
//holder.txt_ID = (TextView) convertView.findViewById(R.id.txtID);
holder.grid_txtTitle = (TextView) convertView.findViewById(R.id.grid_txtTitle);
holder.grid_img = (ImageView) convertView.findViewById(R.id.grid_img);
convertView.setTag(holder);
} else {
holder = (ViewHolder) convertView.getTag();
}
// holder.txt_ID.setText(items.get(position));
holder.grid_txtTitle.setText(items.get(position));
String path=getFinalFilePath(listIcon.get(position));
bitmap= BitmapFactory.decodeFile(path);
holder.grid_img.setImageBitmap(bitmap);
return convertView;
}
private String getFinalFilePath(String urlpath) {
try {
File fileWithinMyDir = getApplicationContext().getFilesDir();
String path = fileWithinMyDir.getAbsolutePath();
String ImageName = urlpath.substring(urlpath.lastIndexOf("/") + 1);
String FinalPath = path + "/" + ImageName;
return FinalPath;
} catch (Exception e) {
e.printStackTrace();
}
return "";
}
private class ViewHolder {
TextView grid_txtTitle;
ImageView grid_img;
}
}
}
activity.xml
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorTabBackground"
tools:context="com.vimalsagarji.vimalsagarjiapp.AudioCategory">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<include
android:id="@+id/toolbar_audio"
layout="@layout/toolbar_home"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<EditText
android:id="@+id/etAudioCategory"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_below="@+id/toolbar_audio"
android:hint="Audio Category"
android:padding="10dp"
android:textColorHint="@color/colorPrimary"/>
<ImageView
android:id="@+id/imgSerch"
android:layout_width="wrap_content"
android:layout_height="30dp"
android:layout_alignParentRight="true"
android:layout_below="@+id/toolbar_audio"
android:layout_marginTop="7dp"
android:src="@drawable/search"/>
<View
android:id="@+id/viewline"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_below="@id/etAudioCategory"
android:layout_marginTop="-7dp"
android:background="@color/colorPrimary"/>
<GridView
android:id="@+id/grid_audio"
android:layout_below="@id/viewline"
android:layout_width="match_parent"
android:numColumns="3"
android:layout_height="match_parent"></GridView>
</RelativeLayout>
custom_grid_item.xml
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="120dp"
android:background="@drawable/corner_event"
android:orientation="vertical">
<ImageView
android:id="@+id/grid_img"
android:layout_width="match_parent"
android:layout_height="70dp"
android:layout_gravity="center"
android:layout_marginTop="30dp"
android:src="@android:drawable/ic_menu_gallery"/>
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center">
<TextView
android:id="@+id/grid_txtTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:layout_marginLeft="170dp"
android:textSize="14sp"
android:textColor="@color/colorTabColor"
android:text="Title"/>
</RelativeLayout>
上面的代码是在我的应用程序中实现的,但是当尝试运行应用程序时,会显示错误,请帮助我获取输出。
最佳答案
您尚未初始化listName
。它为空。
您的CustomAdapter
调用super(context, resource, items);
。不允许将 null 作为项目传递。因为 ArrayAdapter.getCount()
不会检查项目的 null 值。
ArrayAdapter 的源代码:
public int getCount() {
return mObjects.size();
}
关于java - 在此 Gridview 中显示错误 java.lang.NullPointerException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34960572/
我有一个需要以编程方式作为列(而不是行)绑定(bind)到 gridview 的值列表。例如,如果我的 DAL 返回 10 个值,我需要将这 10 个值显示为 gridview 中的列作为标题文本,并
我有一个使用 out-gridview 显示结果的脚本.这是一个简单的例子: "hello world" | out-gridview 当我使用 Run with PowerShell 运行脚本时,它
我正在尝试使用工作正常的 Kartik 导出小部件,除了它没有在扩展“函数/网格”中获取数据。现在我当然明白它是如何工作的,它实际上并没有显示任何东西,只是呈现另一个 View 。但我不知道如何在导出
在 Android 教程中,GridView tutorial准确的说是有一行代码 GridView gridview = (GridView) findViewById(R.id.gridview)
我正在尝试为与我的 gridview 关联的每一列添加一个标题,这样当页面足够宽以显示多行项目时,列标题应该显示在每一列的顶部,如果页面缩小,以至于该列不再适合。 最终结果看起来像这样: 2 colu
在我使用 comboBox 而不是 default(textBox) 在 gridview 中使用这个搜索之前: [ 'attribute' => 'project_status',
我想在列中显示我的交易表中一个/所有帐户的总余额。余额列应显示添加上一行总余额的余额。 我的网格 View 代码是 'yii\grid\SerialColumn'],
我正在使用 gridview 列出我的所有数据。我的 table 看起来像这样。 $dataProvider, 'columns' => [ 'firstName',
我目前正在构建一个 Windows 8 XAML C# 应用程序。在一个页面中,我有一个用于水平滑动和滚动的滚动查看器。我有几个控件可以很好地与 scorllviewer 配合使用。但是当您滚动并且光
当调整 GridView 的大小时,它的元素被重新排列,该元素的动画似乎不起作用。 在这里你可以找到一个简单的例子:http://pastebin.com/BgST6sCv 如果单击示例中的其中一个方
如何动态更改 gridview 模板列顺序? 最佳答案 迭代 通通栏目 的网格 View 对象和 店铺 他们在 收藏 . List columns = new List(); foreach (Dat
我在 Yii2 中使用了 CRUD 生成器,它为我的 actionIndex 生成了以下代码 Controller ... public function actionIndex() { $s
在我的用户模型中我有一个函数: public function getRole() { if ($this->role == self::ROLE_USER) { return
我正在构建一个带有 Yii2 框架的 webapp,它将为用户(登录)提供下载管理员预先上传文件的能力。 我已经创建了操作 actionDownload在调用 sendFile() 的特定 Contr
我想在 GridView 中订购图像。我已经使用列表框并成功将图像添加到其中。它的显示如下 但我希望这些图像显示在 GridView 中。可能与否。 请帮助我......提前致谢 最佳答案 出于此类目
我试图通过在 QtQuick 2.0 (Qt 5) 中动态填充 ListModel 来填充 GridView。它可以工作,但应用程序启动速度非常慢: 应用程序窗口立即出现,但大约需要 2 秒才会出现浅
我在 Yii2 GridView 小部件中显示一些列,“执行人员名称”是其中之一,但它应该仅在主管登录时显示,而不是在执行人员登录时显示。 当我将可见值硬编码为零时,它不会显示如下: [ 'l
我想用 HTML 制作一个表格。所以我从数据库中获取了一些数据。 每个项目都是一个用户。用户有用户名、名字、姓氏和电子邮件。我想制作一个表格来列出这些用户。 每个用户都必须换行。我已经在互联网上搜索过
我想在 pjax 处于事件状态的排序 gridview 之后运行脚本。重新加载 gridview 后我找不到任何事件处理程序。 pjax调用和gridview刷新后有没有正确的事件处理方法? 最佳答案
在 WinRT 上,我有一个 GridView 。我想在到达 gridview 的末尾时执行一个方法。 但是,没有像 GridView 那样的事件方法。 我尝试检测对 gridview 的操纵,但似乎
我是一名优秀的程序员,十分优秀!