Android:选项卡内容未出现
我有一个信息选项卡,其中应该有一个列表视图、图像视图和文本视图。由于某种原因,内容没有显示。 这是我用来设置选项卡的代码。
tabHost.addTab(tabHost.newTabSpec("tab4")
.setContent(R.id.layout_tab_four).setIndicator(tabname4,res.getDrawable(R.drawable.information)));
这是布局文件:
<ViewFlipper android:id="@+id/layout_tab_four"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<ImageView android:layout_width="wrap_content" android:id="@+id/infologo"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true" android:layout_height="wrap_content" />
<ListView android:layout_width="match_parent" android:id="@+id/infolistview"
android:layout_height="20dp" android:layout_weight="1"
android:layout_alignParentLeft="true" />
<TextView android:layout_width="wrap_content" android:text="General"
android:id="@+id/textView1" android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true" />
</ViewFlipper>
提前致谢
编辑:
列表视图代码:
infoList = (ListView) findViewById(R.id.infolistview);
infoListAdapter = new ArrayAdapter(this, R.layout.item,
this.fetchInfoList());
infoList.setAdapter(infoListAdapter);
获取信息列表方法:
public ArrayList<String> fetchInfoList() {
ArrayList<String> listItems = new ArrayList<String>();
String listItem9 = "Visit Our Website";
listItems.add(listItem9);
return listItems;
}
I have an info tab, which should have a listview, imageview and textview. For some reason the content is not showing.
Here is the code I use to set the tab up.
tabHost.addTab(tabHost.newTabSpec("tab4")
.setContent(R.id.layout_tab_four).setIndicator(tabname4,res.getDrawable(R.drawable.information)));
Here is the layout file:
<ViewFlipper android:id="@+id/layout_tab_four"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<ImageView android:layout_width="wrap_content" android:id="@+id/infologo"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true" android:layout_height="wrap_content" />
<ListView android:layout_width="match_parent" android:id="@+id/infolistview"
android:layout_height="20dp" android:layout_weight="1"
android:layout_alignParentLeft="true" />
<TextView android:layout_width="wrap_content" android:text="General"
android:id="@+id/textView1" android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true" />
</ViewFlipper>
Thanks in advance
EDIT:
List View Code:
infoList = (ListView) findViewById(R.id.infolistview);
infoListAdapter = new ArrayAdapter(this, R.layout.item,
this.fetchInfoList());
infoList.setAdapter(infoListAdapter);
Fetch Info List Method:
public ArrayList<String> fetchInfoList() {
ArrayList<String> listItems = new ArrayList<String>();
String listItem9 = "Visit Our Website";
listItems.add(listItem9);
return listItems;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
用于选择您的选项卡(像您一样设置内容后):
其中 -1 < X< (numberoftabs -1) //你喜欢数学吗? :D
use for select your tab this (after setting the content like you did):
Where -1 < X < (numberoftabs -1) //Do you like maths? :D