我的FloatingActionButton
中有一个MainActivity
,点击后,我会转到一个名为newPlant
的新活动。我在我的android清单中声明了这个:
<activity
android:name="newPlant"
android:label="@string/app_name">
</activity>
标签与MainActivity
相同,因为我真的不知道标签的用途。在newPlant
活动中,我有另一个FloatingActionButton
以及应该可点击的ImageButton
。当我第一次遇到麻烦时,我找到并经历this post,这有帮助。现在的问题是onClickListeners
中的代码都没有被执行(我在每个侦听器中都有未被调用的Log.D方法)。这是我的newPlant.Java
文件以及随附的布局文件。
public class newPlant extends AppCompatActivity implements OnClickListener {
private ImageButton plantCam;
private FloatingActionButton savePlant;
private EditText newPlantName;
private EditText newPlantWF;
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.newplant);
plantCam = (ImageButton)findViewById(R.id.newPlantImage);
savePlant = (FloatingActionButton)findViewById(R.id.savePlant);
newPlantName = findViewById(R.id.newPlantName);
newPlantWF = findViewById(R.id.newPlantWF);
setContentView(R.layout.newplant);
plantCam.setOnClickListener(this);
savePlant.setOnClickListener(this);
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
Bitmap bitmap = (Bitmap)data.getExtras().get("data");
plantCam.setImageBitmap(bitmap);
}
public void onClick(View v){
switch(v.getId()){
case R.id.newPlantImage:{
Log.d("plantCam", "clicked");
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(intent,0);
break;
}case R.id.savePlant:{
Log.d("SavePlant", "clicked");
MyApplication.myPlantList.add(new Plant(newPlantName.getText().toString(), plantCam.getDrawable(), newPlantWF.getText().toString()));
MyApplication.savePlants();
finish();
Log.d("SavePlant", "finished saving plant" + MyApplication.myPlantList.toString());
break;
}
}
}
}
XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent" android:layout_height="match_parent">
<EditText
android:id="@+id/newPlantName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_marginTop="20dp"
android:ems="10"
android:inputType="textPersonName"
android:text="Name" />
<EditText
android:id="@+id/newPlantWF"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_marginTop="100dp"
android:ems="10"
android:inputType="numberSigned"
android:text="Days between Watering"/>
<ImageButton
android:id="@+id/newPlantImage"
android:layout_width="250dp"
android:layout_height="250dp"
android:layout_alignParentBottom="true"
android:layout_alignParentStart="true"
android:layout_marginBottom="57dp"
android:layout_marginStart="54dp"
android:src="@mipmap/add_plant"/>
<android.support.design.widget.FloatingActionButton
android:id="@+id/savePlant"
android:layout_width="46dp"
android:layout_height="46dp"
android:layout_alignParentEnd="true"
android:layout_below="@+id/newPlantImage"
android:layout_gravity="end|bottom"
android:layout_marginEnd="20dp"
android:layout_marginTop="-57dp"
android:scaleType="center"
android:src="@mipmap/add_plant" />
</RelativeLayout>
答案 0 :(得分:0)
出于某种原因,我两次致电setContentView()
。这就是问题所在。感谢那些指出这一点的人。