0

我正在尝试做一个应用程序,只要我点击一个按钮,它就会给我添加新的复选框。此外,新的复选框必须取自我已经添加的文本编辑器的名称。有人可以帮我吗?

这是我的 MyAndroidAppActivity

 package com.example.myandroidapp;
 import android.app.Activity;
 import android.os.Bundle;
 import android.view.Menu;
 import android.view.View;
 import android.view.View.OnClickListener;
 import android.widget.Button;
 import android.widget.CheckBox;    
 import android.widget.Toast;


public class MyAndroidAppActivity extends Activity {

private CheckBox chkIos, chkAndroid, chkWindows;
private Button btnDisplay, btn_add;
public final static String EXTRA_MESSAGE = "com.example.myfirstapp.MESSAGE";


@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    addListenerOnChkIos();
    addListenerOnButton();

}



public void addListenerOnChkIos() {

    chkIos = (CheckBox) findViewById(R.id.chkIos);

    chkIos.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {

            if (((CheckBox) v).isChecked()) {
                Toast.makeText(MyAndroidAppActivity.this,
                        "Bro, try Android :)", Toast.LENGTH_LONG).show();
            }

        }
    });

}

public void addListenerOnButton() {

    chkIos = (CheckBox) findViewById(R.id.chkIos);
    chkAndroid = (CheckBox) findViewById(R.id.chkAndroid);
    chkWindows = (CheckBox) findViewById(R.id.chkWindows);
    btnDisplay = (Button) findViewById(R.id.btnDisplay);

    btnDisplay.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {

            StringBuffer result = new StringBuffer();
            result.append("IPhone check : ")
                    .append(chkIos.isChecked());
            result.append("\nAndroid check : ").append(
                    chkAndroid.isChecked());
            result.append("\nWindows Mobile check :").append(
                    chkWindows.isChecked());

            Toast.makeText(MyAndroidAppActivity.this, result.toString(),
                    Toast.LENGTH_LONG).show();

        }
    });

}

}

这是 main.xml

 <?xml version="1.0" encoding="utf-8"?>
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="vertical" 
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent">



  <EditText

   android:id="@+id/edit_message"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:ems="10"
   android:hint="@string/edit_message" />

  <requestFocus />




  <Button
      android:id="@+id/btn_add"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="@string/button_add" />

<CheckBox
    android:id="@+id/chkIos"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/chk_ios" />

<CheckBox
    android:id="@+id/chkAndroid"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:checked="true"
    android:text="@string/chk_android" />

<CheckBox
    android:id="@+id/chkWindows"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/chk_windows" />

<Button
    android:id="@+id/btnDisplay"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/btn_display" />  

4

1 回答 1

0

膨胀后,您可以通过编程方式添加到布局中。为您的 LinearLayout 添加一个 id:

android:id ="@+id/layout"

然后在 OnCreate 中(在现有代码之后),获取对它的引用并根据需要添加控件。例如:

LinearLayout ll = (LinearLayout)findViewById(R.id.layout);

CheckBox cb = new CheckBox(this);
int lHeight = LinearLayout.LayoutParams.MATCH_PARENT;
int lWidth = LinearLayout.LayoutParams.WRAP_CONTENT;

ll.addView(cb, new LinearLayout.LayoutParams(lHeight, lWidth));
setContentView(ll);

当然,您实际上需要将该代码移动到按钮的单击事件处理程序中。如果您希望能够像这样动态添加多个复选框,我认为您需要在数组中管理它们。在您说“复选框必须从文本编辑器中获取名称”的地方,我假设这是针对复选框显示的文本,在这种情况下,您需要同时创建一个 TextView 并从您的 EditText 设置其文本。

然后是配置更改(即设备方向更改)时会发生什么的问题。这会重新创建活动,因此您的动态添加将丢失,除非您将它们存储在 onSaveInstanceState() 中,然后使用 SharedPreferences 在 onRestoreInstanceState() 中恢复它们。

我希望这可以帮助您入门。

于 2013-05-02T10:50:25.090 回答