cleanup
This commit is contained in:
parent
25d9688c8a
commit
aa17542f98
@ -16,9 +16,6 @@ import com.dowerx.quack.R;
|
|||||||
import com.dowerx.quack.service.AuthService;
|
import com.dowerx.quack.service.AuthService;
|
||||||
|
|
||||||
public class RegisterActivity extends AppCompatActivity {
|
public class RegisterActivity extends AppCompatActivity {
|
||||||
|
|
||||||
// private FirebaseAuth fbs;
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onCreate(Bundle savedInstanceState) {
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
@ -30,7 +27,6 @@ public class RegisterActivity extends AppCompatActivity {
|
|||||||
return insets;
|
return insets;
|
||||||
});
|
});
|
||||||
|
|
||||||
// fbs = FirebaseAuth.getInstance();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void register(View view) {
|
public void register(View view) {
|
||||||
@ -52,21 +48,6 @@ public class RegisterActivity extends AppCompatActivity {
|
|||||||
|
|
||||||
AuthService.Register task = new AuthService.Register(this);
|
AuthService.Register task = new AuthService.Register(this);
|
||||||
task.execute(email, password, username);
|
task.execute(email, password, username);
|
||||||
|
|
||||||
// fbs.createUserWithEmailAndPassword(email, password).addOnCompleteListener(this, task -> {
|
|
||||||
// if (task.isSuccessful()) {
|
|
||||||
// Toast toast = new Toast(this);
|
|
||||||
// toast.setText("succesful register");
|
|
||||||
// toast.setDuration(Toast.LENGTH_LONG);
|
|
||||||
// toast.show();
|
|
||||||
// startActivity(new Intent(this, MainActivity.class));
|
|
||||||
// } else {
|
|
||||||
// Toast toast = new Toast(this);
|
|
||||||
// toast.setText("login failed");
|
|
||||||
// toast.setDuration(Toast.LENGTH_LONG);
|
|
||||||
// toast.show();
|
|
||||||
// }
|
|
||||||
// });
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void redirect_login(View view) {
|
public void redirect_login(View view) {
|
||||||
|
@ -16,6 +16,7 @@ import androidx.recyclerview.widget.LinearLayoutManager;
|
|||||||
import androidx.recyclerview.widget.RecyclerView;
|
import androidx.recyclerview.widget.RecyclerView;
|
||||||
|
|
||||||
import com.dowerx.quack.R;
|
import com.dowerx.quack.R;
|
||||||
|
import com.dowerx.quack.activity.SwitcherActivity;
|
||||||
import com.dowerx.quack.model.Post;
|
import com.dowerx.quack.model.Post;
|
||||||
import com.dowerx.quack.service.PostService;
|
import com.dowerx.quack.service.PostService;
|
||||||
|
|
||||||
@ -68,7 +69,7 @@ public class FeedFragment extends Fragment implements LoaderManager.LoaderCallba
|
|||||||
public void onLoadFinished(@NonNull Loader<List<Post>> loader, List<Post> data) {
|
public void onLoadFinished(@NonNull Loader<List<Post>> loader, List<Post> data) {
|
||||||
Log.d(this.getClass().getName(), "onLoadFinished");
|
Log.d(this.getClass().getName(), "onLoadFinished");
|
||||||
Log.d(this.getClass().getName(), data.toString());
|
Log.d(this.getClass().getName(), data.toString());
|
||||||
recyclerView.setAdapter(new PostRecyclerViewAdapter(data));
|
recyclerView.setAdapter(new PostRecyclerViewAdapter(data, (SwitcherActivity)getContext()));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,15 +1,13 @@
|
|||||||
package com.dowerx.quack.fragment;
|
package com.dowerx.quack.fragment;
|
||||||
|
|
||||||
import android.os.AsyncTask;
|
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
|
|
||||||
import androidx.fragment.app.Fragment;
|
|
||||||
|
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
import android.widget.EditText;
|
import android.widget.EditText;
|
||||||
|
|
||||||
|
import androidx.fragment.app.Fragment;
|
||||||
|
|
||||||
import com.dowerx.quack.R;
|
import com.dowerx.quack.R;
|
||||||
import com.dowerx.quack.service.PostService;
|
import com.dowerx.quack.service.PostService;
|
||||||
|
|
||||||
|
@ -1,15 +1,16 @@
|
|||||||
package com.dowerx.quack.fragment;
|
package com.dowerx.quack.fragment;
|
||||||
|
|
||||||
import androidx.annotation.NonNull;
|
|
||||||
import androidx.recyclerview.widget.RecyclerView;
|
|
||||||
|
|
||||||
import android.annotation.SuppressLint;
|
|
||||||
import android.graphics.Color;
|
import android.graphics.Color;
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
import android.widget.Button;
|
import android.widget.Button;
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
|
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.recyclerview.widget.RecyclerView;
|
||||||
|
|
||||||
|
import com.dowerx.quack.R;
|
||||||
|
import com.dowerx.quack.activity.SwitcherActivity;
|
||||||
import com.dowerx.quack.databinding.FragmentPostBinding;
|
import com.dowerx.quack.databinding.FragmentPostBinding;
|
||||||
import com.dowerx.quack.model.Post;
|
import com.dowerx.quack.model.Post;
|
||||||
import com.dowerx.quack.service.AuthService;
|
import com.dowerx.quack.service.AuthService;
|
||||||
@ -20,9 +21,11 @@ import java.util.List;
|
|||||||
public class PostRecyclerViewAdapter extends RecyclerView.Adapter<PostRecyclerViewAdapter.ViewHolder> {
|
public class PostRecyclerViewAdapter extends RecyclerView.Adapter<PostRecyclerViewAdapter.ViewHolder> {
|
||||||
|
|
||||||
private final List<Post> mValues;
|
private final List<Post> mValues;
|
||||||
|
private final SwitcherActivity activity;
|
||||||
|
|
||||||
public PostRecyclerViewAdapter(List<Post> items) {
|
public PostRecyclerViewAdapter(List<Post> items, SwitcherActivity activity) {
|
||||||
mValues = items;
|
this.mValues = items;
|
||||||
|
this.activity = activity;
|
||||||
}
|
}
|
||||||
|
|
||||||
@NonNull
|
@NonNull
|
||||||
@ -35,7 +38,13 @@ public class PostRecyclerViewAdapter extends RecyclerView.Adapter<PostRecyclerVi
|
|||||||
public void onBindViewHolder(final ViewHolder holder, int position) {
|
public void onBindViewHolder(final ViewHolder holder, int position) {
|
||||||
holder.mItem = mValues.get(position);
|
holder.mItem = mValues.get(position);
|
||||||
holder.username.setText(holder.mItem.getUser().getUsername());
|
holder.username.setText(holder.mItem.getUser().getUsername());
|
||||||
|
holder.username.setOnClickListener(v->{
|
||||||
|
activity.setUser(holder.mItem.getUser().getId());
|
||||||
|
activity.findViewById(R.id.nav_profile).performClick();
|
||||||
|
});
|
||||||
|
|
||||||
holder.content.setText(holder.mItem.getContent());
|
holder.content.setText(holder.mItem.getContent());
|
||||||
|
|
||||||
holder.like.setText((holder.mItem.isLiked() ? "Liked " : "Likes ") + holder.mItem.getLikes());
|
holder.like.setText((holder.mItem.isLiked() ? "Liked " : "Likes ") + holder.mItem.getLikes());
|
||||||
holder.like.setBackgroundColor(holder.mItem.isLiked() ? Color.rgb(36, 166, 71) : Color.rgb(173, 33, 61));
|
holder.like.setBackgroundColor(holder.mItem.isLiked() ? Color.rgb(36, 166, 71) : Color.rgb(173, 33, 61));
|
||||||
holder.like.setOnClickListener(v -> {
|
holder.like.setOnClickListener(v -> {
|
||||||
@ -57,7 +66,7 @@ public class PostRecyclerViewAdapter extends RecyclerView.Adapter<PostRecyclerVi
|
|||||||
});
|
});
|
||||||
|
|
||||||
if (!AuthService.getId().equals(holder.mItem.getUser().getId())) {
|
if (!AuthService.getId().equals(holder.mItem.getUser().getId())) {
|
||||||
holder.remove.setAlpha(0.5f);
|
holder.remove.setAlpha(0.0f);
|
||||||
holder.remove.setClickable(false);
|
holder.remove.setClickable(false);
|
||||||
} else {
|
} else {
|
||||||
holder.remove.setOnClickListener(v -> {
|
holder.remove.setOnClickListener(v -> {
|
||||||
|
@ -16,6 +16,7 @@ import androidx.recyclerview.widget.LinearLayoutManager;
|
|||||||
import androidx.recyclerview.widget.RecyclerView;
|
import androidx.recyclerview.widget.RecyclerView;
|
||||||
|
|
||||||
import com.dowerx.quack.R;
|
import com.dowerx.quack.R;
|
||||||
|
import com.dowerx.quack.activity.SwitcherActivity;
|
||||||
import com.dowerx.quack.model.Post;
|
import com.dowerx.quack.model.Post;
|
||||||
import com.dowerx.quack.service.PostService;
|
import com.dowerx.quack.service.PostService;
|
||||||
|
|
||||||
@ -75,7 +76,7 @@ public class ProfileFeedFragment extends Fragment implements LoaderManager.Loade
|
|||||||
public void onLoadFinished(@NonNull Loader<List<Post>> loader, List<Post> data) {
|
public void onLoadFinished(@NonNull Loader<List<Post>> loader, List<Post> data) {
|
||||||
Log.d(this.getClass().getName(), "onLoadFinished");
|
Log.d(this.getClass().getName(), "onLoadFinished");
|
||||||
Log.d(this.getClass().getName(), data.toString());
|
Log.d(this.getClass().getName(), data.toString());
|
||||||
recyclerView.setAdapter(new PostRecyclerViewAdapter(data));
|
recyclerView.setAdapter(new PostRecyclerViewAdapter(data, (SwitcherActivity)getContext()));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,8 +1,11 @@
|
|||||||
package com.dowerx.quack.fragment;
|
package com.dowerx.quack.fragment;
|
||||||
|
|
||||||
import android.app.Activity;
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
|
import android.view.LayoutInflater;
|
||||||
|
import android.view.View;
|
||||||
|
import android.view.ViewGroup;
|
||||||
|
import android.widget.EditText;
|
||||||
|
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
import androidx.annotation.Nullable;
|
import androidx.annotation.Nullable;
|
||||||
@ -12,11 +15,6 @@ import androidx.loader.content.Loader;
|
|||||||
import androidx.recyclerview.widget.LinearLayoutManager;
|
import androidx.recyclerview.widget.LinearLayoutManager;
|
||||||
import androidx.recyclerview.widget.RecyclerView;
|
import androidx.recyclerview.widget.RecyclerView;
|
||||||
|
|
||||||
import android.view.LayoutInflater;
|
|
||||||
import android.view.View;
|
|
||||||
import android.view.ViewGroup;
|
|
||||||
import android.widget.EditText;
|
|
||||||
|
|
||||||
import com.dowerx.quack.R;
|
import com.dowerx.quack.R;
|
||||||
import com.dowerx.quack.activity.SwitcherActivity;
|
import com.dowerx.quack.activity.SwitcherActivity;
|
||||||
import com.dowerx.quack.model.User;
|
import com.dowerx.quack.model.User;
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
package com.dowerx.quack.fragment;
|
package com.dowerx.quack.fragment;
|
||||||
|
|
||||||
import androidx.recyclerview.widget.RecyclerView;
|
|
||||||
|
|
||||||
import android.app.Activity;
|
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
import android.widget.Button;
|
import android.widget.Button;
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
|
|
||||||
|
import androidx.recyclerview.widget.RecyclerView;
|
||||||
|
|
||||||
import com.dowerx.quack.R;
|
import com.dowerx.quack.R;
|
||||||
import com.dowerx.quack.activity.SwitcherActivity;
|
import com.dowerx.quack.activity.SwitcherActivity;
|
||||||
import com.dowerx.quack.databinding.FragmentUserBinding;
|
import com.dowerx.quack.databinding.FragmentUserBinding;
|
||||||
import com.dowerx.quack.model.User;
|
import com.dowerx.quack.model.User;
|
||||||
import androidx.fragment.app.Fragment;
|
|
||||||
|
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
@ -1,10 +1,5 @@
|
|||||||
package com.dowerx.quack.model;
|
package com.dowerx.quack.model;
|
||||||
|
|
||||||
import java.sql.Array;
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Arrays;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
public class Post {
|
public class Post {
|
||||||
public User getUser() {
|
public User getUser() {
|
||||||
return user;
|
return user;
|
||||||
|
@ -2,7 +2,6 @@ package com.dowerx.quack.service;
|
|||||||
|
|
||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.Intent;
|
|
||||||
import android.os.AsyncTask;
|
import android.os.AsyncTask;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
import android.widget.Toast;
|
import android.widget.Toast;
|
||||||
@ -14,25 +13,20 @@ import androidx.loader.content.AsyncTaskLoader;
|
|||||||
import com.dowerx.quack.R;
|
import com.dowerx.quack.R;
|
||||||
import com.dowerx.quack.model.Post;
|
import com.dowerx.quack.model.Post;
|
||||||
import com.dowerx.quack.model.User;
|
import com.dowerx.quack.model.User;
|
||||||
import com.google.android.gms.tasks.Task;
|
|
||||||
import com.google.android.gms.tasks.Tasks;
|
import com.google.android.gms.tasks.Tasks;
|
||||||
import com.google.firebase.auth.FirebaseAuth;
|
import com.google.firebase.auth.FirebaseAuth;
|
||||||
import com.google.firebase.firestore.CollectionReference;
|
|
||||||
import com.google.firebase.firestore.DocumentReference;
|
import com.google.firebase.firestore.DocumentReference;
|
||||||
import com.google.firebase.firestore.DocumentSnapshot;
|
import com.google.firebase.firestore.DocumentSnapshot;
|
||||||
import com.google.firebase.firestore.Filter;
|
import com.google.firebase.firestore.Filter;
|
||||||
import com.google.firebase.firestore.FirebaseFirestore;
|
import com.google.firebase.firestore.FirebaseFirestore;
|
||||||
import com.google.firebase.firestore.Query;
|
|
||||||
import com.google.firebase.firestore.QueryDocumentSnapshot;
|
import com.google.firebase.firestore.QueryDocumentSnapshot;
|
||||||
import com.google.firebase.firestore.QuerySnapshot;
|
import com.google.firebase.firestore.QuerySnapshot;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.LinkedList;
|
import java.util.LinkedList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.concurrent.Callable;
|
import java.util.concurrent.Callable;
|
||||||
import java.util.concurrent.ExecutionException;
|
import java.util.concurrent.ExecutionException;
|
||||||
import java.util.concurrent.atomic.AtomicBoolean;
|
|
||||||
|
|
||||||
public class PostService {
|
public class PostService {
|
||||||
public static class GetFeed extends AsyncTaskLoader<List<Post>> {
|
public static class GetFeed extends AsyncTaskLoader<List<Post>> {
|
||||||
|
@ -5,15 +5,12 @@ import android.content.Context;
|
|||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
import androidx.annotation.Nullable;
|
import androidx.annotation.Nullable;
|
||||||
import androidx.loader.content.AsyncTaskLoader;
|
import androidx.loader.content.AsyncTaskLoader;
|
||||||
import androidx.loader.content.Loader;
|
|
||||||
|
|
||||||
import com.dowerx.quack.model.Post;
|
|
||||||
import com.dowerx.quack.model.User;
|
import com.dowerx.quack.model.User;
|
||||||
import com.google.android.gms.tasks.Tasks;
|
import com.google.android.gms.tasks.Tasks;
|
||||||
import com.google.firebase.firestore.DocumentSnapshot;
|
import com.google.firebase.firestore.DocumentSnapshot;
|
||||||
import com.google.firebase.firestore.Filter;
|
import com.google.firebase.firestore.Filter;
|
||||||
import com.google.firebase.firestore.FirebaseFirestore;
|
import com.google.firebase.firestore.FirebaseFirestore;
|
||||||
import com.google.firebase.firestore.QueryDocumentSnapshot;
|
|
||||||
import com.google.firebase.firestore.QuerySnapshot;
|
import com.google.firebase.firestore.QuerySnapshot;
|
||||||
|
|
||||||
import java.util.LinkedList;
|
import java.util.LinkedList;
|
||||||
@ -22,7 +19,6 @@ import java.util.concurrent.ExecutionException;
|
|||||||
|
|
||||||
public class UserService {
|
public class UserService {
|
||||||
public static class GetUserByUsername extends AsyncTaskLoader<User> {
|
public static class GetUserByUsername extends AsyncTaskLoader<User> {
|
||||||
|
|
||||||
private final String username;
|
private final String username;
|
||||||
|
|
||||||
public GetUserByUsername(@NonNull Context context, String username) {
|
public GetUserByUsername(@NonNull Context context, String username) {
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
android:id="@+id/logo"
|
android:id="@+id/logo"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="20dp"
|
android:layout_marginTop="@dimen/default_margin"
|
||||||
android:text="@string/app_name"
|
android:text="@string/app_name"
|
||||||
android:textSize="48sp"
|
android:textSize="48sp"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
@ -22,13 +22,12 @@
|
|||||||
android:id="@+id/email"
|
android:id="@+id/email"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="20dp"
|
android:layout_marginTop="@dimen/default_margin"
|
||||||
android:autofillHints="emailAddress"
|
android:autofillHints="emailAddress"
|
||||||
android:ems="10"
|
android:ems="10"
|
||||||
android:hint="@string/email_hint"
|
android:hint="@string/email_hint"
|
||||||
android:inputType="textEmailAddress"
|
android:inputType="textEmailAddress"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintHorizontal_bias="0.502"
|
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@+id/logo" />
|
app:layout_constraintTop_toBottomOf="@+id/logo" />
|
||||||
|
|
||||||
@ -36,7 +35,7 @@
|
|||||||
android:id="@+id/password"
|
android:id="@+id/password"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="20dp"
|
android:layout_marginTop="@dimen/default_margin"
|
||||||
android:ems="10"
|
android:ems="10"
|
||||||
android:inputType="textPassword"
|
android:inputType="textPassword"
|
||||||
android:autofillHints="password"
|
android:autofillHints="password"
|
||||||
@ -49,7 +48,7 @@
|
|||||||
android:id="@+id/login"
|
android:id="@+id/login"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="20dp"
|
android:layout_marginTop="@dimen/default_margin"
|
||||||
android:text="@string/login_btn"
|
android:text="@string/login_btn"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
@ -60,7 +59,7 @@
|
|||||||
android:id="@+id/register"
|
android:id="@+id/register"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="20dp"
|
android:layout_marginTop="@dimen/default_margin"
|
||||||
android:text="@string/register_btn"
|
android:text="@string/register_btn"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
android:id="@+id/logo"
|
android:id="@+id/logo"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="20dp"
|
android:layout_marginTop="@dimen/default_margin"
|
||||||
android:text="@string/register_btn"
|
android:text="@string/register_btn"
|
||||||
android:textSize="48sp"
|
android:textSize="48sp"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
@ -22,13 +22,12 @@
|
|||||||
android:id="@+id/email"
|
android:id="@+id/email"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="20dp"
|
android:layout_marginTop="@dimen/default_margin"
|
||||||
android:autofillHints="emailAddress"
|
android:autofillHints="emailAddress"
|
||||||
android:ems="10"
|
android:ems="10"
|
||||||
android:hint="@string/email_hint"
|
android:hint="@string/email_hint"
|
||||||
android:inputType="textEmailAddress"
|
android:inputType="textEmailAddress"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintHorizontal_bias="0.502"
|
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@+id/logo" />
|
app:layout_constraintTop_toBottomOf="@+id/logo" />
|
||||||
|
|
||||||
@ -36,7 +35,7 @@
|
|||||||
android:id="@+id/username"
|
android:id="@+id/username"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="20dp"
|
android:layout_marginTop="@dimen/default_margin"
|
||||||
android:ems="10"
|
android:ems="10"
|
||||||
android:inputType="textPersonName"
|
android:inputType="textPersonName"
|
||||||
android:autofillHints="username"
|
android:autofillHints="username"
|
||||||
@ -49,7 +48,7 @@
|
|||||||
android:id="@+id/password"
|
android:id="@+id/password"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="20dp"
|
android:layout_marginTop="@dimen/default_margin"
|
||||||
android:ems="10"
|
android:ems="10"
|
||||||
android:inputType="textPassword"
|
android:inputType="textPassword"
|
||||||
android:autofillHints="password"
|
android:autofillHints="password"
|
||||||
@ -62,7 +61,7 @@
|
|||||||
android:id="@+id/repeat_password"
|
android:id="@+id/repeat_password"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="20dp"
|
android:layout_marginTop="@dimen/default_margin"
|
||||||
android:ems="10"
|
android:ems="10"
|
||||||
android:inputType="textPassword"
|
android:inputType="textPassword"
|
||||||
android:autofillHints="password"
|
android:autofillHints="password"
|
||||||
@ -75,7 +74,7 @@
|
|||||||
android:id="@+id/register"
|
android:id="@+id/register"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="20dp"
|
android:layout_marginTop="@dimen/default_margin"
|
||||||
android:text="@string/register_btn"
|
android:text="@string/register_btn"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
@ -86,7 +85,7 @@
|
|||||||
android:id="@+id/login"
|
android:id="@+id/login"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="20dp"
|
android:layout_marginTop="@dimen/default_margin"
|
||||||
android:text="@string/login_btn"
|
android:text="@string/login_btn"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
@ -6,8 +6,6 @@
|
|||||||
android:name="com.dowerx.quack.FeedFragment"
|
android:name="com.dowerx.quack.FeedFragment"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:layout_marginLeft="16dp"
|
|
||||||
android:layout_marginRight="16dp"
|
|
||||||
app:layoutManager="LinearLayoutManager"
|
app:layoutManager="LinearLayoutManager"
|
||||||
tools:context=".fragment.FeedFragment"
|
tools:context=".fragment.FeedFragment"
|
||||||
tools:listitem="@layout/fragment_post" />
|
tools:listitem="@layout/fragment_post" />
|
@ -11,10 +11,11 @@
|
|||||||
android:layout_height="match_parent">
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
<EditText
|
<EditText
|
||||||
|
android:hint="@string/content_hint"
|
||||||
android:id="@+id/content"
|
android:id="@+id/content"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_margin="20dp"
|
android:layout_margin="@dimen/default_margin"
|
||||||
android:ems="10"
|
android:ems="10"
|
||||||
android:gravity="start|top"
|
android:gravity="start|top"
|
||||||
android:inputType="textMultiLine"
|
android:inputType="textMultiLine"
|
||||||
@ -27,10 +28,9 @@
|
|||||||
android:id="@+id/send_post"
|
android:id="@+id/send_post"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="20dp"
|
android:layout_marginTop="@dimen/default_margin"
|
||||||
android:text="@string/post_btn"
|
android:text="@string/post_btn"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintHorizontal_bias="0.498"
|
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@+id/content"
|
app:layout_constraintTop_toBottomOf="@+id/content"
|
||||||
/>
|
/>
|
||||||
|
@ -10,8 +10,7 @@
|
|||||||
android:id="@+id/username"
|
android:id="@+id/username"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_margin="20dp"
|
android:layout_margin="@dimen/default_margin"
|
||||||
android:text=""
|
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toTopOf="parent" />
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
|
|
||||||
@ -19,23 +18,22 @@
|
|||||||
android:id="@+id/content"
|
android:id="@+id/content"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text=""
|
|
||||||
app:layout_constraintTop_toBottomOf="@+id/username"
|
app:layout_constraintTop_toBottomOf="@+id/username"
|
||||||
android:layout_margin="20dp"/>
|
android:layout_margin="@dimen/default_margin"/>
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:id="@+id/post_buttons"
|
android:id="@+id/post_buttons"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_margin="20dp"
|
android:layout_margin="@dimen/default_margin"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@+id/content">
|
app:layout_constraintTop_toBottomOf="@+id/content">
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
android:id="@+id/like"
|
android:id="@+id/like"
|
||||||
android:layout_marginLeft="20dp"
|
android:layout_marginLeft="@dimen/default_margin"
|
||||||
android:layout_marginRight="20dp"
|
android:layout_marginRight="@dimen/default_margin"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
@ -43,8 +41,8 @@
|
|||||||
|
|
||||||
<Button
|
<Button
|
||||||
android:id="@+id/remove"
|
android:id="@+id/remove"
|
||||||
android:layout_marginLeft="20dp"
|
android:layout_marginLeft="@dimen/default_margin"
|
||||||
android:layout_marginRight="20dp"
|
android:layout_marginRight="@dimen/default_margin"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
@ -13,15 +13,12 @@
|
|||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
||||||
android:padding="20dp">
|
android:padding="@dimen/default_margin">
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/profile_username"
|
android:id="@+id/profile_username"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="@string/placeholder_name"
|
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
|
||||||
app:layout_constraintHorizontal_bias="0.08"
|
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toTopOf="parent" />
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
||||||
android:hint="@string/username_hint"
|
android:hint="@string/username_hint"
|
||||||
android:autofillHints="username,search"
|
android:autofillHints="username,search"
|
||||||
android:layout_margin="20dp"/>
|
android:layout_margin="@dimen/default_margin"/>
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
android:id="@+id/search"
|
android:id="@+id/search"
|
||||||
@ -23,7 +23,7 @@
|
|||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
||||||
android:text="@string/search_btn"
|
android:text="@string/search_btn"
|
||||||
android:layout_margin="20dp"/>
|
android:layout_margin="@dimen/default_margin"/>
|
||||||
|
|
||||||
<androidx.recyclerview.widget.RecyclerView
|
<androidx.recyclerview.widget.RecyclerView
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
android:id="@+id/username"
|
android:id="@+id/username"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_margin="20dp"
|
android:layout_margin="@dimen/default_margin"
|
||||||
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toTopOf="parent" />
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
@ -22,5 +22,5 @@
|
|||||||
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
||||||
android:layout_margin="20dp"/>
|
android:layout_margin="@dimen/default_margin"/>
|
||||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
@ -1,4 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<dimen name="text_margin">16dp</dimen>
|
<dimen name="text_margin">16dp</dimen>
|
||||||
|
<dimen name="default_margin">20dp</dimen>
|
||||||
</resources>
|
</resources>
|
@ -107,4 +107,5 @@
|
|||||||
</string>
|
</string>
|
||||||
<string name="search_btn">Search</string>
|
<string name="search_btn">Search</string>
|
||||||
<string name="view_profile">View</string>
|
<string name="view_profile">View</string>
|
||||||
|
<string name="content_hint">Content</string>
|
||||||
</resources>
|
</resources>
|
Loading…
Reference in New Issue
Block a user