gpt4 book ai didi

android - 以编程方式将 View 添加到 ScrollView 中的相对布局

转载 作者:搜寻专家 更新时间:2023-11-01 08:31:00 24 4
gpt4 key购买 nike

请耐心等待,因为我是 View 和布局的新手。

我正在尝试创建一个应用程序,用户可以在其中输入一个文本字段,按下一个按钮并出现一个新的文本字段,他们可以继续以这种方式添加文本字段。

我的解决方案是让顶层成为一个 ScrollView ,然后在其中有一个相对 View 作为 subview (这样我就可以使用 OnClick() 监听器以编程方式在我的代码中插入更多编辑 View 。

我已经看到并阅读了一些与相关观点有关的其他帖子,但似乎仍然缺少一些东西。我试过了

这是xml

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_create_accounts"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.nic.mybudget.CreateAccountsActivity">


<RelativeLayout
android:id="@+id/activity_create_accounts_relativeLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fillViewport="true"
>

<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/activity_name"
android:inputType="textAutoComplete"
android:layout_alignParentTop="true"
android:id="@+id/activity_createAccounts_relativeLayout_activityName"/>


<Button
android:text="+"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:layout_below="@+id/activity_createAccounts_relativeLayout_activityName"
android:id="@+id/activity_create_accounts_relativeLayout_activityName_addButton" />

<Button
android:text="Save"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_below="@+id/activity_create_accounts_relativeLayout_activityName_addButton"
android:layout_centerHorizontal="true"
android:id="@+id/activity_create_accounts_relativeLayout_activityName_saveButton" />


</RelativeLayout>

这是我尝试添加新编辑 View 的代码。

public class CreateAccountsActivity extends Activity {

static private final String TAG = "MAIN-Activity";
int numAccounts = 0;
int lastAccountID;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_create_accounts);

final RelativeLayout Relative = (RelativeLayout) findViewById(R.id.activity_create_accounts_relativeLayout);
final TextView oldAccount = (TextView) findViewById(R.id.activity_createAccounts_relativeLayout_activityName);
final TextView newAccount = new TextView(this);

final Button addNewAccountButton = (Button) findViewById(R.id.activity_create_accounts_relativeLayout_activityName_addButton);
addNewAccountButton.setOnClickListener(new View.OnClickListener() {

@Override
public void onClick(View v) {
Log.i(TAG, "addNewAccountOnClick");
numAccounts = numAccounts+1;
int newAccountID = oldAccount.getId() + numAccounts;

RelativeLayout.LayoutParams rlp = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,ViewGroup.LayoutParams.WRAP_CONTENT);
rlp.addRule(RelativeLayout.ALIGN_PARENT_TOP);
newAccount.setLayoutParams(rlp);
newAccount.setHint("Hint" );
newAccount.setId(newAccountID);
Relative.addView(newAccount);

RelativeLayout.LayoutParams blp = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,ViewGroup.LayoutParams.WRAP_CONTENT);
blp.addRule(RelativeLayout.BELOW, newAccountID-1);
addNewAccountButton.setLayoutParams(blp);
}
});
}

}

如您所见,我正在尝试(但失败)的是在页面顶部添加新的编辑 View ,然后将其他所有内容简单地推到页面下方。我在这里的相对布局有什么问题?

感谢任何帮助。

最佳答案

首先,带有 id activity_createAccounts_relativeLayout_activityName 的 View 是 EditText 并且您正在使用 TextView 进行转换,因此将其转换为 EditText 是错误的

针对您的实际问题:您正在使用带有变量 newAccount 的相同 EditText 实例并在相对布局中再次添加它,如果您想在相对布局中再添加一个 EditText,您必须在 onclicklistener 中初始化 EditText。只需在您的 onclicklistener 代码中的 numAccounts = numAccounts+1;

行之前添加一行 newAccount= new EditText(context)

编码愉快!

关于android - 以编程方式将 View 添加到 ScrollView 中的相对布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40902586/

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