我是android开发的新手。现在我的操作栏中有标签。我为这些片段创建了类。我的第一堂课目前只有一个按钮。我稍后会添加更多。当您单击一个按钮时,我尝试在此类中启动一个活动,但它不起作用......它只是崩溃了这是代码:
package com.cydeon.plasmamodz;
import com.cydeon.plasmamodz.R;
import android.app.Activity;
import android.app.Fragment;
import android.content.Intent;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
public class ThemeFragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.theme_frag,
container, false);
Button button = (Button) view.findViewById(R.id.button1);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
Intent intent = new Intent(getActivity(), Themes.class);
getActivity().startActivity(intent);
}
});
return view;
}}
我确实在清单中定义了主题类。我不确定我做错了什么,并且真的可以使用一些帮助。正如我所说,我只有 15 岁,而且是新手。