Android Open Source - MatrixTools M Multiplication Fragment






From Project

Back to project page MatrixTools.

License

The source code is released under:

Apache License

If you think the Android project MatrixTools listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.sehackers.matrixtools.fragments;
//from   w w w  . java2s.c o  m
import com.sehackers.matrixtools.R;

import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

public class MMultiplicationFragment extends Fragment {
  
  public MMultiplicationFragment(){}
  
  @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
 
        View rootView = inflater.inflate(R.layout.fragment_mmultiplication, container, false);
         
        return rootView;
    }
}




Java Source Code List

com.sehackers.matrixtools.MainActivity.java
com.sehackers.matrixtools.fragments.AdditionFragment.java
com.sehackers.matrixtools.fragments.HomeFragment.java
com.sehackers.matrixtools.fragments.MMultiplicationFragment.java
com.sehackers.matrixtools.fragments.SMultiplicationFragment.java
com.sehackers.matrixtools.fragments.SingleMatrixInputFragment.java
com.sehackers.matrixtools.fragments.SubtractionFragment.java
com.sehackers.models.Matrix.java