这是我在navigation drawer中使用的片段之一。我需要添加一个按钮,当按下时,将文本框更改为不同的文本。我不断地得到findviewbyid()int无法解决的错误,诸如此类。我可以使用MainActivity/activity_main,但是当我使用nav drawer的一个页面(比如ConnectFragment.java/fragment_connect.xml)时,我会得到错误。
这是仅用于connectfragment的代码

import android.os.Bundle;
import android.os.PersistableBundle;
import android.support.v4.app.Fragment;
import android.support.v7.app.AppCompatActivity;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.TextView;

public class ConnectFragment extends Fragment {
    public ConnectFragment() {
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View rootView = inflater.inflate(R.layout.fragment_connect, container, false);

        return rootView;
    }
}

这是我要实现的代码
final Button ClassAButton = (Button)findViewById(R.id.ClassAButton);

ClassAButton.setOnClickListener(
    new Button.OnClickListener(){
        public void onClick(View view){
            TextView FeloniesText = (TextView)findViewById(R.id.FeloniesText);
            FeloniesText.setText("Button 1 Has been pressed!");
        }
    }
);

来自XML的代码(这里是相对布局标记,格式混乱)
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="@color/backgroundColor">

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="New Button"
        android:id="@+id/ClassAButton"
        android:layout_centerVertical="true"
        android:layout_centerHorizontal="true" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:text="Large Text"
        android:id="@+id/FeloniesText"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="107dp" />
</RelativeLayout>

我还想添加多个按钮来改变文本视图,所以我想,A类按钮打印出Hi,B类按钮打印出Yes,C类按钮打印出Elephant,等等。任何帮助将不胜感激。:d BTW API 15标准

最佳答案

试试这个。
换这条线。

final Button ClassAButton = (Button)findViewById(R.id.ClassAButton);

对此。
final Button ClassAButton = (Button) rootView.findViewById(R.id.ClassAButton);

TextView FeloniesText = (TextView) rootView.findViewById(R.id.FeloniesText);

编辑:对于文本视图,请尝试此操作。
ClassAButton.setOnClickListener(new View.OnClickListener(){
                public void onClick(View view){
                    FeloniesText.setText("Button 1 Has been pressed!");
                }
            }
    );

在代码中替换此项。
编辑2:
用你的代码替换这个完整的代码。
在参考链接中,他们采取了行动,你采取了片段。
public class ConnectFragment extends Fragment {

final Button ClassAButton;
TextView FeloniesText;



public ConnectFragment() {
}

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

    View rootView = inflater.inflate(R.layout.fragment_connect, container, false);
    init(rootView);
    return rootView;

}


public void init(View view)
{
    ClassAButton = (Button) view.findViewById(R.id.ClassAButton);
    FeloniesText = (TextView) view.findViewById(R.id.FeloniesText);
    ClassAButton.setOnClickListener(new View.OnClickListener(){
                public void onClick(View view){
                    FeloniesText.setText("Button 1 Has been pressed!");
                }
            }
    );
}

10-08 00:20