传递将LinearLayout扩展到另一个Activity的自定义对象

时间:2014-09-19 12:12:44

标签: java android android-intent android-activity


我有一个活动,用户可以在对话框中输入一个名称。
然后一个' BoardElemnt' -Object(它我自己的类扩展一个LinearLayout)包含一个带有输入名称和一个Edittext的textview ,将动态添加到Activity中。用户可以根据需要随时进行此操作。

如果用户长按这样的BoardElement,他可以选择是否要编辑或删除此BoardElement。
如果他想编辑此BoardElement,则应显示一个新的Activity,用户可以在其中编辑一些内容。具体的BoardElement。 我的问题是,我无法将此BoardElement对象传递给' EditActivity'。

我的BoardElement类:

public class BoardElement extends LinearLayout implements TextWatcher{

private static Context context;
private RelativeLayout parentLayout ;
private LinearLayout fBoard ; 
private TextView txtOutput ;
private EditText editBudget ;
private String fName;
private TextView txtfName= new TextView(getContext()) ;
private EditText editBetrag = new EditText(getContext()) ;


/////////////////////////////////////////
//
// This Data can be Edited in the EditActivity
//

private String fotoPath ;
private String note ;
private String name ;
private String category ;
private String store ;
private String measures ;


//
//
/////////////////////////////////////////

/**
 *  
 * @param context
 * @param _parentLayout
 * @param _furnitureName
 */
public BoardElement(Context _context, RelativeLayout _parentLayout, String _fName){
    super(_context);

    context = _context;
    parentLayout = _parentLayout ;
    fName= _fName;


    category = fName;



    LinearLayout.LayoutParams mparams = new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);
    mparams.setMargins(0, 0, 0, 10) ;
    this.setLayoutParams(mparams) ;
    this.setOrientation(LinearLayout.HORIZONTAL) ;
    this.setBackgroundResource(R.drawable.board_element) ;



    LinearLayout.LayoutParams txtParams = new LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.MATCH_PARENT) ;
    txtParams.gravity = Gravity.CENTER ;
    txtParams.weight = 1.0f;
    txtFurnitureName.setLayoutParams(txtParams) ;
    txtFurnitureName.setBackgroundResource(R.drawable.txt_fName) ;
    txtFurnitureName.setText(this.fName) ;
    txtFurnitureName.setTextColor(getResources().getColor(R.color.white)) ;
    txtFurnitureName.setTextSize(20) ;
    this.addView(txtfName) ;





    editBetrag.setInputType( InputType.TYPE_CLASS_NUMBER | InputType.TYPE_NUMBER_FLAG_DECIMAL ) ;
    editBetrag.setTextColor(getResources().getColor(R.color.white)) ;
    editBetrag.setGravity(Gravity.RIGHT) ;
    editBetrag.setBackgroundResource(R.drawable.input_field );
    editBetrag.setFilters(new InputFilter[] {new InputFilter.LengthFilter(9)}) ;
    this.addView(editBetrag) ;
    editBetrag.addTextChangedListener(this) ;       


}
////////////////////////////////
//
// getters and setters 

// ...



我尝试使用SerializableParcelable将其传递给其他活动,但没有成功。我只是通过Parcelable方法传递我的字符串成员,但后来我无法编辑这些成员......

问候

1 个答案:

答案 0 :(得分:0)

你可以把你的班级分成两个不同的班级。一个只保存String属性(Properties.class)的类,可以对其进行编辑。另一种只是构建布局(Layout.class)。这样,您只需通过Intent将Properties.class发送到EditActivity,并在您想要对其进行充气时将其传递给Layout.class。要实现Properties.class的Parcelable接口应该很容易。