Skip to content
Snippets Groups Projects
Commit b1d5b1d2 authored by Ilham Firdausi Putra's avatar Ilham Firdausi Putra
Browse files

add home fragment recycler view with dummy data

parent 77263e67
Branches
No related merge requests found
...@@ -4,6 +4,7 @@ import android.content.Context; ...@@ -4,6 +4,7 @@ import android.content.Context;
import android.net.Uri; import android.net.Uri;
import android.os.Bundle; import android.os.Bundle;
import android.support.v4.app.Fragment; import android.support.v4.app.Fragment;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView; import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater; import android.view.LayoutInflater;
import android.view.View; import android.view.View;
...@@ -12,6 +13,7 @@ import android.view.ViewGroup; ...@@ -12,6 +13,7 @@ import android.view.ViewGroup;
import com.chatman.adapter.ChatListAdapter; import com.chatman.adapter.ChatListAdapter;
import com.chatman.model.ChatList; import com.chatman.model.ChatList;
import java.util.ArrayList;
import java.util.List; import java.util.List;
...@@ -49,7 +51,17 @@ public class HomeFragment extends Fragment { ...@@ -49,7 +51,17 @@ public class HomeFragment extends Fragment {
public View onCreateView(LayoutInflater inflater, ViewGroup container, public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) { Bundle savedInstanceState) {
// Inflate the layout for this fragment // Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_home, container, false); View view = inflater.inflate(R.layout.fragment_home, container, false);
// Recycler View
recycler = view.findViewById(R.id.chat_list_rv);
LinearLayoutManager linearLayoutManager = new LinearLayoutManager(getContext());
linearLayoutManager.setReverseLayout(true);
linearLayoutManager.setStackFromEnd(true);
recycler.setLayoutManager(linearLayoutManager);
getChatLists();
adapter = new ChatListAdapter(chatLists);
recycler.setAdapter(adapter);
return view;
} }
// TODO: Rename method, update argument and hook method into UI event // TODO: Rename method, update argument and hook method into UI event
...@@ -91,69 +103,69 @@ public class HomeFragment extends Fragment { ...@@ -91,69 +103,69 @@ public class HomeFragment extends Fragment {
void onFragmentInteraction(Uri uri); void onFragmentInteraction(Uri uri);
} }
// // Todo: Ganti data dummmy jadi data asli ngambil dari database // Todo: Ganti data dummmy jadi data asli ngambil dari database
// private List<ChatList> getChatLists() { private List<ChatList> getChatLists() {
// chatLists = new ArrayList<>(); chatLists = new ArrayList<>();
// chatLists.add(new ChatList( chatLists.add(new ChatList(
// R.drawable.priagung, R.drawable.priagung,
// "Priagung Satyagama", "Priagung Satyagama",
// "Woi sini ke sekre 2 temani diriku yang kesepian" "Woi sini ke sekre 2 temani diriku yang kesepian"
// )); ));
// chatLists.add(new ChatList( chatLists.add(new ChatList(
// R.drawable.rama, R.drawable.rama,
// "Yusuf Rahmat Pratama", "Yusuf Rahmat Pratama",
// "Eh, gmn gmn?" "Eh, gmn gmn?"
// )); ));
// chatLists.add(new ChatList( chatLists.add(new ChatList(
// R.drawable.priagung, R.drawable.priagung,
// "Priagung Satyagama", "Priagung Satyagama",
// "Woi sini ke sekre 2 temani diriku yang kesepian" "Woi sini ke sekre 2 temani diriku yang kesepian"
// )); ));
// chatLists.add(new ChatList( chatLists.add(new ChatList(
// R.drawable.rama, R.drawable.rama,
// "Yusuf Rahmat Pratama", "Yusuf Rahmat Pratama",
// "Eh, gmn gmn?" "Eh, gmn gmn?"
// )); ));
// chatLists.add(new ChatList( chatLists.add(new ChatList(
// R.drawable.priagung, R.drawable.priagung,
// "Priagung Satyagama", "Priagung Satyagama",
// "Woi sini ke sekre 2 temani diriku yang kesepian" "Woi sini ke sekre 2 temani diriku yang kesepian"
// )); ));
// chatLists.add(new ChatList( chatLists.add(new ChatList(
// R.drawable.rama, R.drawable.rama,
// "Yusuf Rahmat Pratama", "Yusuf Rahmat Pratama",
// "Eh, gmn gmn?" "Eh, gmn gmn?"
// )); ));
// chatLists.add(new ChatList( chatLists.add(new ChatList(
// R.drawable.priagung, R.drawable.priagung,
// "Priagung Satyagama", "Priagung Satyagama",
// "Woi sini ke sekre 2 temani diriku yang kesepian" "Woi sini ke sekre 2 temani diriku yang kesepian"
// )); ));
// chatLists.add(new ChatList( chatLists.add(new ChatList(
// R.drawable.rama, R.drawable.rama,
// "Yusuf Rahmat Pratama", "Yusuf Rahmat Pratama",
// "Eh, gmn gmn?" "Eh, gmn gmn?"
// )); ));
// chatLists.add(new ChatList( chatLists.add(new ChatList(
// R.drawable.priagung, R.drawable.priagung,
// "Priagung Satyagama", "Priagung Satyagama",
// "Woi sini ke sekre 2 temani diriku yang kesepian" "Woi sini ke sekre 2 temani diriku yang kesepian"
// )); ));
// chatLists.add(new ChatList( chatLists.add(new ChatList(
// R.drawable.rama, R.drawable.rama,
// "Yusuf Rahmat Pratama", "Yusuf Rahmat Pratama",
// "Eh, gmn gmn?" "Eh, gmn gmn?"
// )); ));
// chatLists.add(new ChatList( chatLists.add(new ChatList(
// R.drawable.priagung, R.drawable.priagung,
// "Priagung Satyagama", "Priagung Satyagama",
// "Woi sini ke sekre 2 temani diriku yang kesepian" "Woi sini ke sekre 2 temani diriku yang kesepian"
// )); ));
// chatLists.add(new ChatList( chatLists.add(new ChatList(
// R.drawable.rama, R.drawable.rama,
// "Yusuf Rahmat Pratama", "Yusuf Rahmat Pratama",
// "Eh, gmn gmn?" "Eh, gmn gmn?"
// )); ));
// return chatLists; return chatLists;
// } }
} }
...@@ -71,17 +71,6 @@ public class MainActivity extends AppCompatActivity implements ...@@ -71,17 +71,6 @@ public class MainActivity extends AppCompatActivity implements
setSupportActionBar(toolbar); setSupportActionBar(toolbar);
context = this; context = this;
// Recycler View
// recycler = findViewById(R.id.chat_list_rv);
// LinearLayoutManager linearLayoutManager = new LinearLayoutManager(context);
// linearLayoutManager.setReverseLayout(true);
// linearLayoutManager.setStackFromEnd(true);
// recycler.setLayoutManager(linearLayoutManager);
// getChatLists();
// adapter = new ChatListAdapter(chatLists);
// recycler.setAdapter(adapter);
// Bottom Navigation Bar // Bottom Navigation Bar
bottomNavbar = findViewById(R.id.navigation); bottomNavbar = findViewById(R.id.navigation);
bottomNavbar.setOnNavigationItemSelectedListener(mOnNavigationItemSelectedListener); bottomNavbar.setOnNavigationItemSelectedListener(mOnNavigationItemSelectedListener);
......
...@@ -31,6 +31,8 @@ ...@@ -31,6 +31,8 @@
android:background="@drawable/button_round" android:background="@drawable/button_round"
android:layout_marginTop="20dp" android:layout_marginTop="20dp"
android:layout_marginBottom="20dp" android:layout_marginBottom="20dp"
android:layout_marginLeft="50dp"
android:layout_marginRight="50dp"
android:text="Logout" /> android:text="Logout" />
</LinearLayout> </LinearLayout>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment