Skip to content

Instantly share code, notes, and snippets.

View anotherChowdhury's full-sized avatar

anotherChowdhury

  • Dhaka
View GitHub Profile
@anotherChowdhury
anotherChowdhury / activity_search.xml
Created October 8, 2018 16:28
Search Activity XML
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".search">
<TextView
android:id="@+id/show"
@anotherChowdhury
anotherChowdhury / MainActivity.java
Created October 8, 2018 16:27
Search Minactivity Java
package com.example.umar.intent_internetconnection;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.widget.EditText;
import android.widget.Toast;
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<EditText
android:id="@+id/written"
android:layout_marginTop="30dp"
android:layout_width="match_parent"
@anotherChowdhury
anotherChowdhury / MainActivity.java
Created October 8, 2018 16:22
Todo App Java Code
package com.example.umar.todolab;
import android.content.Context;
import android.content.Intent;
import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.widget.AdapterView;
import android.content.Context;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.EditText;
import android.widget.ListView;