Back to project page odcontrol-voice.
The source code is released under:
GNU General Public License
If you think the Android project odcontrol-voice listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package cl.mamd.voice.tabfragment; //from ww w .j ava 2s . co m import cl.mamd.voice.R; import android.app.Fragment; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.TextView; import android.widget.Toast; public class FragmentDevicePortAnalog extends Fragment { @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View V = inflater.inflate(R.layout.fragment_device_port_analog, container, false); return V; } public void testButtonFrame(View v){ Toast.makeText(getActivity(), "ANALOG",Toast.LENGTH_LONG).show(); } }