我在我的应用程序中创建了片段(6个片段)。在我的第一个片段(android_frag)中,有一个按钮“在地图上显示位置”。当我点击该按钮时,会打开新的活动名称“ShowPlaces”。在show_places xml文件中,我创建了一个按钮,它应该返回到上一个屏幕,即android片段但是当ShowPlaces活动显示时按钮没有出现,尽管我可以在xml文件的图形布局中看到按钮。我无法找出问题所在。请帮助。
这是我的show_places.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:gravity="center"
android:orientation="vertical" >
<!-- Show on Map button -->
<Button
android:id="@+id/btn_show_map1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="@string/showplaces"
/>
</LinearLayout>
这是ShowPlaces.java文件
package com.example.tabswipe;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.Button;
import android.app.Activity;
import android.view.Menu;
public class ShowPlaces extends Activity implements OnClickListener {
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View ios = inflater.inflate(R.layout.show_places, container, false);
Button button = (Button) ios.findViewById(R.id.btn_show_map);
button.setOnClickListener(new OnClickListener()
{ @Override
public void onClick(View v) {
// here you set what you want to do when user clicks your button,
// e.g. launch a new activity
Intent openStartingPoint = new Intent("com.example.tabswipe.Android");
startActivity(openStartingPoint);
}
});
return ios;
}
public void onClick(View v) {
// TODO Auto-generated method stub
}
}
答案 0 :(得分:0)
看起来你在xml中有android:id =“@ + id / btn_show_map1”但是试图找到id btn_show_map。这些应该改为与另一个相同。