Я новичок в разработке для Android.
Пожалуйста, проверьте этот URL -
http://mobileecommerce.site247365.com/admin/catdata.xml
Пожалуйста, проверьте раздаточный материал (Cat_name) cat_desc, он не отображается должным образом в веб-представлении Android.
Я не знаю почему, кто-нибудь может мне помочь или есть идеи?
Это мой код-
public void startElement(String uri, String localName,String qName, Attributes
attributes) throws SAXException {
currentTag=localName;
Log.v("in start elelmet", "in start elelmet");
if(qName.equals("Table")){
buffer=new StringBuffer();
itemTagStarted=true;
item=new NewsItem();
}
}
@Override
public void characters(char[] ch, int start, int length)
throws SAXException {
if(itemTagStarted){
if(currentTag.equals("Cat_Name")){
item.setCatname(String.valueOf(ch,start,length));
}
if(currentTag.equals("Cat_id")){
item.setCatid(String.valueOf(ch,start,length));
}
if(currentTag.equals("Cat_Desc")){
buffer.append(String.valueOf(ch,start,length));
}
}
}
@Override
public void endElement(String uri, String localName,
String qName) throws SAXException {
currentTag="";
if(qName.equals("Table")){
itemTagStarted=false;
newsList.add(item);
}
if(qName.equals("Cat_Desc")){
item.setCatdesc(buffer.toString());
Log.v("Description data",buffer.toString());
}
}
@Override
public void endDocument() throws SAXException {
Log.v("parsing completed","parsing completed : array size : "+newsList.size());
}
});
}
catch(Exception ex)
{
ex.printStackTrace();
}
Мой класс WebView-
защищенный void onCreate (Bundle saveInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.web_view);
Intent intent=getIntent();
String pdf=intent.getStringExtra("str");
mWebView = (WebView) findViewById(R.id.webview);
mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.loadData(pdf,"text/html", "utf-8");
* *} Тысяча двадцать-один
Спасибо и всего наилучшего
Арпит Триведи