gpt4 book ai didi

android - 调用需要 api 级别 11。出现此错误时该怎么办?

转载 作者:搜寻专家 更新时间:2023-11-01 09:04:05 26 4
gpt4 key购买 nike

我正在使用这个代码

public class MainActivity extends Activity {

TextView textview;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);


String hallo = "blabla " + "jojo " + "lol " + "\n" + "doj " + "drasl " + "\n";
InputStream is = new ByteArrayInputStream(hallo.getBytes());
BufferedReader in = new BufferedReader(new InputStreamReader(is));
LinearLayout linearLayout = (LinearLayout) findViewById(R.id.linearLayout);

String line;
try {
while ((line = in.readLine()) != null) {
String[] RowData = line.split(" ");
String eitt = RowData[0];
String tvo = RowData[1];

TextView textView = new TextView(this);
textView.setText(line);
textView.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT
,LayoutParams.WRAP_CONTENT));
linearLayout.addView(textView);
}
} catch (IOException e1) {
e1.printStackTrace();
}
}
}

用这个xml代码

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<LinearLayout
android:id="@+id/linearLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >

</LinearLayout>

</ScrollView>

我想将字符串的这些部分插入到表格布局中,这样当我的文本 fragment 被打印出来时,它们就会出现在漂亮的列中。它的工作方式是逐行打印字符串,而不是将其放入列中。知道我不知道字符串中会有多少行也很重要,所以我不能只制作 4 个 textview 框,因为一百行可能有 50 og,所以我需要制作一个 i表格 View 中 TextView 框的数量,其中 i 是行数。但是我总是收到这个错误,调用需要 api 级别 11,而我使用的是 api 级别 10。错误是因为这一行

textView.setLayoutParams(newLayoutParams(LayoutParams.FILL_PARENT
,LayoutParams.WRAP_CONTENT));

我可以使用什么样的参数布局选项来让它工作。

最佳答案

您没有显示导入,但您可能使用了错误的 LayoutParams 导入(如 meowmeow 建议)。看起来您可能想改用以下导入。

import android.view.ViewGroup.LayoutParams;

关于android - 调用需要 api 级别 11。出现此错误时该怎么办?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13251089/

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