我尝试使用this创建自定义标签。但是当我尝试从膨胀的布局创建TextView的实例并将其用作我的TabHost.TabSpec中的View时,我收到了
“未处理的例外:
Java.Lang.IllegalStateException:指定的子级已有父级。您必须首先在孩子的父母上调用removeView()。“
Main.cs
public class Main : TabActivity
{
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
SetContentView(Resource.Layout.Main);
Intent[] intents = new Intent[3];
intents[0] = new Intent(this, typeof(Inspection)).PutExtra("Name", "Inspection");
intents[1] = new Intent(this, typeof(Transfer)).PutExtra("Name", "Transfer");
intents[2] = new Intent(this, typeof(ServiceCalls)).PutExtra("Name", "Service Calls");
foreach (var intent in intents)
{
intent.AddFlags(ActivityFlags.NewTask);
TextView tv = getView(intent.GetStringExtra("Name"));
TabHost.TabSpec spec = TabHost.NewTabSpec(intent.GetStringExtra("Name")).SetIndicator(tv).SetContent(intent);
TabHost.AddTab(spec);
}
TabHost.CurrentTab = 0;
}
private TextView getView(string text)
{
View v = LayoutInflater.Inflate(Resource.Layout.tabs_bg, (ViewGroup)FindViewById(Android.Resource.Id.Content));
TextView tv = (TextView)v.FindViewById(Resource.Id.tabsText);
tv.Text = text;
return tv;
}
}
tabs_bg.axml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tabsLayout" android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView android:id="@+id/tabsText" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:background ="@drawable/tab_selector"
android:textSize="18dip"/>
</LinearLayout>
如果我更换
TextView tv = (TextView)v.FindViewById(Resource.Id.tabsText);
使用在getView中
TextView tv = new TextView(this);
然后我没有收到该错误。所以它似乎与tabs_bg中的tabsText有关,尽管这正是作者在示例中所做的那样。
答案 0 :(得分:3)
您要移植的示例不会从 createTabView 返回 TextView ,而是返回 LinearLayout 。您在 getView 中返回 tv 而不是 v 。
答案 1 :(得分:0)
使用
View v = LayoutInflater.Inflate(Resource.Layout.tabs_bg, null);