gpt4 book ai didi

android - 无法在 Tabhost 派生 Activity 中滚动选项卡内容

转载 作者:行者123 更新时间:2023-11-30 04:27:21 25 4
gpt4 key购买 nike

我创建了可在 Android 开发者网站上找到的选项卡布局示例 Tab Layout在安卓 2.2 中。虽然该示例按广告宣传的那样工作,但我根本无法在我放置在其中一个 Activity 中的 TextView 上滚动。如果重要的话,TextView 对象是在给定的 Activity 中动态创建的。我曾尝试使用 ScrollView 将组件的不同部分包装在 main.xml 中,但我在启动时遇到构建错误或强制关闭。附件是实现 textViews 的代码,它是 xml 以及 main.xml 文件。因为我是新人,所以我无法发布图片。非常感谢任何建议。

主.xml:

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp">

<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
<!-- android:padding="5dp" -->
</LinearLayout>
</TabHost>

在选项卡中创建我的 TextView 的来源:

public class Activity2 extends Activity{    
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);

DisplayTexts(20);
}

private void DisplayTexts(int length){
if(length == 0)
return;

LayoutParams params = new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.WRAP_CONTENT);

LinearLayout layout = new LinearLayout(this);
layout.setOrientation(LinearLayout.VERTICAL);
for(int i = 0; i < length; i++)
{
TextView tv = new TextView(getApplicationContext());
registerForContextMenu(tv);
tv.setTextSize(30);
tv.setText("TextView " + String.valueOf(i));
tv.setLayoutParams(params);
layout.addView(tv);
tv.setId(i);
}
LinearLayout.LayoutParams layoutParam = new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT);
this.addContentView(layout, layoutParam);
}

上述 Activity 的 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"
android:orientation="vertical" >
</LinearLayout>

最佳答案

您是否尝试过将此 xml 用于您的 Activity :

activity2.xml:

<?xml version="1.0" encoding="utf-8" ?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="fill_content">
<LinearLayout
android:layout_width="fill_parent"
android:id="@+id/layout1"
android:layout_height="fill_parent"
android:orientation="vertical">
</LinearLayout>
</ScrollView>

然后尝试在 Activity2.class 中添加组件,例如:

setContentView(R.layout.activity2);
...
LinearLayout layout = (LinearLayout)findViewById(R.id.layout1);
for(int i = 0; i < length; i++)
{
TextView tv = new TextView(getApplicationContext());
registerForContextMenu(tv);
tv.setTextSize(30);
tv.setText("TextView " + String.valueOf(i));
tv.setLayoutParams(params);
tv.setId(i);
layout.addView(tv);
}
...

关于android - 无法在 Tabhost 派生 Activity 中滚动选项卡内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8264196/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com