Skip to main content

Divide Layouts into Two Parts Programmatically(without using xml)

For this we just need a class and we will programmatically create the Layouts. And after this we will add Buttons in each layout.

package com.AndroidDevelopmentGuru.progmatic;

import android.app.Activity;
import android.graphics.Color;
import android.os.Bundle;
import android.view.Gravity;
import android.widget.Button;
import android.widget.LinearLayout;
import android.widget.LinearLayout.LayoutParams;

public class progmmatic extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
       
        //creating a Linear Layout
        LinearLayout parent_layout = new LinearLayout(this);
       

        //Specifying Orientation
        parent_layout.setOrientation(LinearLayout.VERTICAL);
               
        setContentView(parent_layout);
       
       
        //Creating first child
        LinearLayout child_one = new LinearLayout(this);
        LinearLayout.LayoutParams one_params = new      LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT,     LayoutParams.MATCH_PARENT,1f);
        child_one.setBackgroundColor(Color.parseColor("#EEFFAA"));
        child_one.setLayoutParams(one_params);
       
        // creating second Child
        LinearLayout child_Second = new LinearLayout(this);
        LinearLayout.LayoutParams second_params = new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT,LayoutParams.MATCH_PARENT,1f);
        child_one.setBackgroundColor(Color.parseColor("#FF9999"));
        child_Second.setLayoutParams(second_params);
        second_params.gravity= Gravity.CENTER;       
        child_Second.setOrientation(LinearLayout.VERTICAL);  
       
       
       
        //Adding both child layout into parent layout
                parent_layout.addView(child_one);
                parent_layout.addView(child_Second);
       
               
  Button b1 = new Button(this)
  b1.setLayoutParams(new     LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT));
        b1.setText("First Progmmatic Button");
       
        child_one.addView(b1);
       
                
        
       
       
        Button b2 = new Button(this);
        b2.setText("Second Progmmatic Button");
        LayoutParams btn_parms = new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT);
        btn_parms.gravity=Gravity.CENTER_HORIZONTAL;
        child_Second.addView(b2, btn_parms);
       
    }   

   
   
}










Download this Code

Output: 

 

Comments

Popular posts from this blog

Android: Login Screen using Fragments

In this tutorial, our focus is on making a User/Member login activity using fragments. With the help of Fragments we will use the same activity to show User login area and also Members Login area. Prerequisite for this tutorial: You should be know how to make an Activity And most importantly you should have prior Knowledge of Fragments. For practising basic Fragment implementation refer to Android Simple Fragment Example      We have used only three activities for this: MainActivity(which represents the Login Screen) Fragments for Members area Fragment for New Users

Simple Login/Register Example using SQLite database

MainActivity.java(login Screen) package com.AndroidDevelopmentGuru.database_new; import java.util.List; import android.app.Activity; import android.content.Intent; import android.database.Cursor; import android.os.Bundle; import android.view.MenuItem; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.EditText; import android.widget.Toast; public class MainActivity extends Activity {                                 EditText user, pass;                 Button login, not_reg;                 DatabaseHandler db;                 Cursor cursor;                                 @Override                 protected void onCreate(Bundle savedInstanceState) {                                 super.onCreate(savedInstanceState);                                 setContentView(R.layout.activity_main);

Android: Current Location Using Fused APi on Google Maps

This tutorial gives us the simple implementation of "Fused API" to fetch the current location on google map in android. Fused API is latest among all techniques to get the location. It provides you very precise results and also uses less battery of your device. It chooses GPS or Network provider to get to your current location. And it helps your device remember about the last saved location. Let's implement the Fused API to fetch/get the current location. Step 1: Create a new project in Android studio. and select Maps Activity.