我想制作一个Android应用程序,在一个视图中有两个点击,即有上部标签和下部标签。
根据下方标签的选择,我在下方标签的tapcontent部分添加新标签主机(用于上方标签)。但是,上部水龙头不会上升,它会粘在下部标签上。
上方标签的实现是,
import android.app.TabActivity;
import android.content.Intent;
import android.os.Bundle;
import android.widget.TabHost;
public class uppertab extends TabActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.upperlayout);
TabHost tabHost = getTabHost();
TabHost.TabSpec spec;
Intent intent;
intent = new Intent().setClass(this, recommend_friend_simillar.class);
spec = tabHost.newTabSpec("upper1").setIndicator("Upper1").setContent(intent);
tabHost.addTab(spec);
intent = new Intent().setClass(this, recommend_friend_new.class);
spec = tabHost.newTabSpec("upper2").setIndicator("Upper2").setContent(intent);
tabHost.addTab(spec);
intent = new Intent().setClass(this, recommend_friend_favorite.class);
spec = tabHost.newTabSpec("upper3").setIndicator("Upper3").setContent(intent);
tabHost.addTab(spec);
}
}
上部点击的xml是,
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/uppertabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TabWidget
android:id="@+id/uppertabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<FrameLayout
android:id="@+id/uppertabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
</LinearLayout>
下标签的xml是,
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TabHost android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TabWidget android:id="@android:id/tabs"
android:layout_alignParentBottom="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<FrameLayout android:id="@android:id/tabcontent"
android:layout_above="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
</FrameLayout>
</RelativeLayout>
</TabHost>
</LinearLayout>
结果如下所示。
□□□□□□□□□□□□□□□□□□□□□□□□□□
□ □
□ □
□ □
□ □
□ □
□□□□□□□□□□□□□□□□□□□□□□□□□□
□ □ □ □
□upper1 □ upper2 □ upper3□
□□□□□□□□□□□□□□□□□□□□□□□□□□
□ lower1□lower2 □ lower3□
□□□□□□□□□□□□□□□□□□□□□□□□□□
当然,上3个水龙头应该坚持到天花板,比如,
□□□□□□□□□□□□□□□□□□□□□□□□□□
□ □ □ □
□upper1 □ upper2 □ upper3□
□□□□□□□□□□□□□□□□□□□□□□□□□□
□ □
□ □
□ □
□ □
□ □
□□□□□□□□□□□□□□□□□□□□□□□□□□
□ lower1□ lower2 □ lower3□
□□□□□□□□□□□□□□□□□□□□□□□□□□
(我得到了一个使用activitygroup的建议,但它不起作用。)
import android.app.ActivityGroup;
import android.content.Intent;
import android.os.Bundle;
import android.widget.TabHost;
public class uppertab extends ActivityGroup {
private TabHost tabHost;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.upperlay);
tabHost = (TabHost)findViewById(R.id.friendtabhost);
tabHost.setup(getLocalActivityManager());
tabHost.addTab(tabHost.newTabSpec("tab1").setIndicator("tab1").setContent(new Intent(this, tab1.class)));
tabHost.addTab(tabHost.newTabSpec("tab2").setIndicator("tab2").setContent(new Intent(this, tab2.class)));
tabHost.addTab(tabHost.newTabSpec("tab3").setIndicator("tab3").setContent(new Intent(this, tab3.class)));
}
}
DDMS说
tabHost.setup(getLocalActivityManager());
有问题。
我能做什么:(?
答案 0 :(得分:0)
为了实现这种要求,需要生成多个触摸事件。你需要设计自己的控件。
示例: - 创建并线性布局放置一个标签,在其上放置另一个按钮。现在你需要第二次点击的另一个控件。所有绑定在一起可以看起来像标签模拟。您可以在一个选项卡中拥有多个触摸元素,您可以单独触发每个触摸事件。
最诚挚的问候 维诺德