无法从同一活动更改Fragment内的TextView文本

时间:2016-07-25 14:36:59

标签: java android android-fragments bluetooth

我正在尝试更改TextView以在片段中提供蓝牙连接的状态,但在调用msgReceived.setText(string)时似乎没有发生任何事情。我该怎么做呢?这是片段的Java文件:

package dleedesign.dubcommunicationstestapp;

import android.app.Fragment;
import android.bluetooth.BluetoothAdapter;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.support.annotation.Nullable;
import android.view.LayoutInflater;
import android.util.Log;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.TextView;

public class SecondFragment extends Fragment implements View.OnClickListener {

View myView;

public final String TAG = "Main";
private Bluetooth bt;
public Button sendCommand;
public TextView msgReceived;

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

    sendCommand = (Button) inflater.inflate(R.layout.second_layout, container, false).findViewById(R.id.sendCommand);
    msgReceived = (TextView) inflater.inflate(R.layout.second_layout, container, false).findViewById(R.id.msgReceived);
    msgReceived.setText("Ready to connect");

    bt = new Bluetooth(new MainActivity(), mHandler);
    connectService();

    return myView;
}

@Override
public void onClick(View v)
{
    connectService();
}

public void connectService()
{
    try {
        msgReceived.setText("Connecting...");
        BluetoothAdapter btAdapter = BluetoothAdapter.getDefaultAdapter();
        if(btAdapter.isEnabled())
        {
            bt.start();
            bt.connectDevice("HC-06");
            Log.d(TAG, "Btservice started- listening");
            msgReceived.setText("Connected!");
        }
        else
        {
            Log.w(TAG, "Btservice started - bluetooth is not enabled");
            msgReceived.setText("Bluetooth not enabled");
        }
    } catch (Exception e) {
        Log.e(TAG, "Unable to start bluetooth", e);
        msgReceived.setText("Unable to connect: " + e);
    }
}

private final Handler mHandler = new Handler()
{
    @Override
    public void handleMessage(Message msg)
    {
        switch (msg.what)
        {
            case Bluetooth.MESSAGE_STATE_CHANGE:
                Log.d(TAG, "MESSAGE_STATE_CHANGE: " + msg.arg1);
                break;
            case Bluetooth.MESSAGE_WRITE:
                Log.d(TAG, "MESSAGE_WRITE");
                break;
            case Bluetooth.MESSAGE_READ:
                Log.d(TAG, "MESSAGE_READ");
                break;
            case Bluetooth.MESSAGE_DEVICE_NAME:
                Log.d(TAG, "MESSAGE_DEVICE_NAME " + msg);
                break;
            case Bluetooth.MESSAGE_TOAST:
                Log.d(TAG, "MESSAGE_TOAST " + msg);
                break;
        }
    }
};

}

修改 这是我选择SecondFragment时发出的LogCat消息:

dleedesign.dubcommunicationstestapp D/BluetoothService: Bounded device 40:EF:4C:C2:A9:32
dleedesign.dubcommunicationstestapp D/BluetoothService: Bounded device 98:D3:31:70:80:C5
dleedesign.dubcommunicationstestapp D/BluetoothService: start
dleedesign.dubcommunicationstestapp D/BluetoothService: setState() 0 -> 1
dleedesign.dubcommunicationstestapp W/BluetoothAdapter: getBluetoothService() called with no BluetoothManagerCallback
dleedesign.dubcommunicationstestapp D/BluetoothService: Socket Type: nullBEGIN mAcceptThreadThread[Thread-20627,5,main]
dleedesign.dubcommunicationstestapp D/BluetoothService: connect to: 98:D3:31:70:80:C5
dleedesign.dubcommunicationstestapp D/BluetoothService: setState() 1 -> 2
dleedesign.dubcommunicationstestapp D/Main: Btservice started- listening
dleedesign.dubcommunicationstestapp I/BluetoothService: BEGIN mConnectThread SocketType:null
dleedesign.dubcommunicationstestapp W/BluetoothAdapter: getBluetoothService() called with no BluetoothManagerCallback
dleedesign.dubcommunicationstestapp D/Main: MESSAGE_STATE_CHANGE: 1
dleedesign.dubcommunicationstestapp D/Main: MESSAGE_STATE_CHANGE: 2
dleedesign.dubcommunicationstestapp E/BluetoothService: Unable to connect socket 
                                                                                       java.io.IOException: read failed, socket might closed or timeout, read ret: -1
                                                                                           at android.bluetooth.BluetoothSocket.readAll(BluetoothSocket.java:517)
                                                                                           at android.bluetooth.BluetoothSocket.readInt(BluetoothSocket.java:528)
                                                                                           at android.bluetooth.BluetoothSocket.connect(BluetoothSocket.java:320)
                                                                                           at dleedesign.dubcommunicationstestapp.Bluetooth$ConnectThread.run(Bluetooth.java:408)
dleedesign.dubcommunicationstestapp D/BluetoothService: start
dleedesign.dubcommunicationstestapp D/BluetoothService: setState() 2 -> 1
dleedesign.dubcommunicationstestapp D/Main: MESSAGE_TOAST { when=-15ms what=5 target=dleedesign.dubcommunicationstestapp.SecondFragment$1 }
dleedesign.dubcommunicationstestapp D/Main: MESSAGE_STATE_CHANGE: 1

2 个答案:

答案 0 :(得分:1)

每当您执行findViewById然后将其投射到TextView时,您正在尝试使用给定布局来扩充视图。这是在您返回的另一个视图上调用findViewById。您应该首先使用

在第一行中对布局进行充气
myview = inflater.inflate....

然后,

msgReceived = (TextView) myView.findViewById(R.id.msgReceived);

(与您尝试使用的任何其他TextView,Button等相同)

答案 1 :(得分:0)

msgReceived = (TextView) myView.findViewById(R.id.msgReceived);