Java Android App Development Course, View Class

Android development involves the use of various View classes that make up the user interface (UI). In this article, we will detail the role, types, usage, and example code of view classes in Android applications. A view generally refers to UI components that are displayed on the screen and can take various forms, including buttons, text fields, and images.

1. What is a View Class?

In Android, a View class is the fundamental class for all UI components. The basic View class represents all UI elements and provides functionality for handling events that interact with the user. Examples include button clicks, text input, scrolling actions, and more.

Views can start from the simplest form and can be composed into complex shapes.

2. Basic Structure of View Classes

View classes offer several properties and methods to enrich the user experience. Here are some key properties and methods:

  • setLayoutParams(ViewGroup.LayoutParams params): Sets the size and position of the view.
  • setVisibility(int visibility): Sets the visibility of the view. (VISIBLE, INVISIBLE, GONE)
  • setBackgroundColor(int color): Sets the background color of the view.
  • setOnClickListener(View.OnClickListener listener): Sets a listener to handle click events.

3. Types of View Classes in Android

Several View classes provided by the Android SDK can be categorized as follows:

  • TextView: A view that displays text.
  • EditText: A text field for user input.
  • Button: A clickable button view.
  • ImageView: A view that displays an image.
  • CheckBox: A selectable checkbox.
  • RadioButton: A radio button that allows one option to be selected within a group.
  • ListView: A view that displays a scrollable list.
  • RecyclerView: An advanced view for efficient list display.
  • ScrollView: A scrollable container.

4. Example Code for View Classes

Now, let’s create a simple Android application. This application will accept a name from the user and display a welcome message upon button click.

4.1. XML Layout File

First, we write the XML file that defines the layout. Below is an example of `activity_main.xml`:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Please enter your name:"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="50dp"/>

    <EditText
        android:id="@+id/editTextName"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/textView"
        android:layout_margin="20dp"/>

    <Button
        android:id="@+id/buttonSubmit"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Submit"
        android:layout_below="@id/editTextName"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="20dp"/>

    <TextView
        android:id="@+id/textViewWelcome"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/buttonSubmit"
        android:layout_marginTop="20dp"
        android:layout_centerHorizontal="true"/>

</RelativeLayout>

4.2. MainActivity.java

Next, let’s write the Java code. Below is an example of `MainActivity.java` that handles user input and sets up the button click event:

package com.example.myapp;

import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import androidx.appcompat.app.AppCompatActivity;

public class MainActivity extends AppCompatActivity {

    private EditText editTextName;
    private Button buttonSubmit;
    private TextView textViewWelcome;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        // Initialize UI elements
        editTextName = findViewById(R.id.editTextName);
        buttonSubmit = findViewById(R.id.buttonSubmit);
        textViewWelcome = findViewById(R.id.textViewWelcome);

        // Handle button click event
        buttonSubmit.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                String name = editTextName.getText().toString();
                textViewWelcome.setText("Welcome, " + name + "!");
            }
        });
    }
}

5. Utilizing View Classes

Now you understand how to utilize view classes through the created application. In the above example, EditText, Button, and TextView were used to create a simple interface. By combining view classes like this, you can create various forms of UI.

6. Advanced Utilization of View Classes

To develop more complex and functional apps, you should be able to utilize advanced view classes such as RecyclerView. RecyclerView is optimized for efficiently displaying and managing a large amount of data. Additionally, it utilizes the Adapter pattern to easily manage the connection between data and views.

6.1. RecyclerView Example

Here, we will demonstrate the process of setting up a simple RecyclerView. This example includes a basic list structure.

6.1.1. XML Layout Setup

First, we define an XML layout that includes the RecyclerView:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/recyclerView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

</RelativeLayout>

6.1.2. Adapter Class

To use RecyclerView, you need to create an Adapter class. The Adapter transforms data into RecyclerView items.

package com.example.myapp;

import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.recyclerview.widget.RecyclerView;
import java.util.List;

public class MyAdapter extends RecyclerView.Adapter {

    private List mData;

    public MyAdapter(List data) {
        mData = data;
    }

    @NonNull
    @Override
    public ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
        View view = LayoutInflater.from(parent.getContext()).inflate(android.R.layout.simple_list_item_1, parent, false);
        return new ViewHolder(view);
    }

    @Override
    public void onBindViewHolder(@NonNull ViewHolder holder, int position) {
        holder.textView.setText(mData.get(position));
    }

    @Override
    public int getItemCount() {
        return mData.size();
    }

    public static class ViewHolder extends RecyclerView.ViewHolder {
        public TextView textView;

        public ViewHolder(View itemView) {
            super(itemView);
            textView = itemView.findViewById(android.R.id.text1);
        }
    }
}

6.1.3. Using RecyclerView in MainActivity

Finally, we initialize the RecyclerView in MainActivity and set the data:

package com.example.myapp;

import android.os.Bundle;
import androidx.appcompat.app.AppCompatActivity;
import androidx.recyclerview.widget.LinearLayoutManager;
import androidx.recyclerview.widget.RecyclerView;
import java.util.Arrays;
import java.util.List;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_recycler_view);

        RecyclerView recyclerView = findViewById(R.id.recyclerView);
        recyclerView.setLayoutManager(new LinearLayoutManager(this));

        List itemList = Arrays.asList("Item 1", "Item 2", "Item 3", "Item 4", "Item 5");
        MyAdapter adapter = new MyAdapter(itemList);
        recyclerView.setAdapter(adapter);
    }
}

7. Conclusion

In this article, we explored the basic concepts of view classes in Android app development, as well as their various types, usage, and more. We also presented simple examples using EditText and Button alongside an advanced example utilizing RecyclerView, demonstrating practical methods for effectively employing view classes in real app development. Understanding these basic view classes will serve as a foundation for more complex UI composition and improvements in user experience.

Keep exploring other view classes and continue to enhance your Android app development skills!

References