无法解析

这是我在导航抽屉中使用的片段之一。 我需要添加一个按钮,当按下时,将文本框更改为不同的文本。 我不断收到findviewbyid()int无法解析的错误等。 我可以在MainActivity / activity_main上工作,但是当我使用导航抽屉的某个页面(如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的代码(相对布局标签在这里,格式化搞砸了)

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类按钮打印出来嗨,B类按钮打印出来是的,C类按钮打印出大象等任何帮助将不胜感激。 :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!");
                }
            }
    );
}

findViewById不是Fragment一部分。 它是ViewGroup的一部分,所以不是

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

你需要

(TextView)rootView.findViewById(R.id.FeloniesText);
链接地址: http://www.djcxy.com/p/84753.html

上一篇: Cannot Resolve

下一篇: Android Studio Layout Errors