Estimados estoy haciendo el tutorial de ejemplo en
http://www.androidhive.info/2012/05/how ... php-mysql/
resulta que ya el mainactivity no viene como antes.
- Código: Seleccionar todo
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.add_product);
// Edit Text
inputName = (EditText) findViewById(R.id.inputName);
inputPrice = (EditText) findViewById(R.id.inputPrice);
inputDesc = (EditText) findViewById(R.id.inputDesc);
// Create button
Button btnCreateProduct = (Button) findViewById(R.id.btnCreateProduct);
// button click event
btnCreateProduct.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
// creating new product in background thread
new CreateNewProduct().execute();
}
});
}
me da error en
- Código: Seleccionar todo
inputName = (EditText) findViewById(R.id.inputName);
inputPrice = (EditText) findViewById(R.id.inputPrice);
inputDesc = (EditText) findViewById(R.id.inputDesc);
el principal lo arregle insertando el codigo en
- Código: Seleccionar todo
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
final View rootView = inflater.inflate(R.layout.fragment_main_screen,
container, false);
// Buttons
btnViewProducts = (Button) rootView.findViewById(R.id.btnViewProducts);
btnNewProduct = (Button) rootView.findViewById(R.id.btnCreateProduct);
// view products click event
btnViewProducts.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
// Launching All products Activity
Intent i = new Intent(rootView.getContext().getApplicationContext(), AllProductsActivity.class);
startActivity(i);
}
});
// view products click event
btnNewProduct.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
// Launching create new product activity
Intent i = new Intent(rootView.getContext().getApplicationContext(), NewProductActivity.class);
startActivity(i);
}
});
return rootView;
}
}
osea usando btnViewProducts = (Button) rootView.findViewById(R.id.btnViewProducts);
la pregunta es como puedo acceder a los controles edittext?
Gracias y perdonden que estoy re perdido, quiero hacer andar esta aplicacion, me rebienta cuando seguis un howto y no te funciona