在我的应用程序中,我希望动态移动“加”图像,当我点击加号图像时,它会出现在我在android中新生成的EditText框旁边,我的textview和edittext框动态地出现在新行上,看到我的图像。我想把它放在一排。
我的代码:
package com.test;
import android.app.Activity;
import android.os.Bundle;
import android.text.Editable;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup.LayoutParams;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;
import android.widget.Toast;
public class Test_testActivity extends Activity {
/** Called when the activity is first created. */
private LinearLayout mLayout;
private EditText mEditText;
private ImageView mButton;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mLayout = (LinearLayout) findViewById(R.id.linearLayout1);
mButton = (ImageView) findViewById(R.id.imageView1);
mButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
//mButton.setVisibility(Button.GONE);
mLayout.addView(createEditText());
mLayout.addView(seconftext());
}
});
}
private EditText createEditText()
{
final LayoutParams lparams = new LayoutParams(150,100); // Width , height
final EditText edittext = new EditText(this);
edittext.setLayoutParams(lparams);
return edittext;
}
private TextView seconftext()
{
final LayoutParams iparams = new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT);
final TextView tv = new TextView(this);
tv.setLayoutParams(iparams);
tv.setText("Second");
return tv;
}
}
和.xml是
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:id="@+id/linearlayout">
<LinearLayout
android:id="@+id/linearLayout2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="#00ffff">
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/plus" />
</LinearLayout>
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
</LinearLayout>
</ScrollView>
</LinearLayout>
答案 0 :(得分:1)
如果你的意思是围绕其他框移动,请创建一个根FrameLayout,在其中放置2个布局:在第一个中,只有你在RelativeLayout中的加号,在第二个所有其他框中。在加上触摸时添加一个监听器并通过它启动动画。由于加号位于自己的图层中,您可以根据需要移动它。
“它必须从旧邮件中删除,并且当我点击该图像加上图像创建新图像并再次出现在新的EdiText框旁边时,它会出现在新的EdiText框旁边”
如果你只希望它在一个地方消失并出现在另一个地方,它就不必是同一个物体。使用一个图像制作两个不同的视图。根据需要,使其中一个可见,另一个看不见。
谨防使用LayoutParams而不说出它们来自哪个类。它破坏了应用程序。该类应该是父布局的类。例如,LinearLayout.LayoutParams。