Revert "Format code and optimize imports"

This reverts commit c98156d139.

# Conflicts:
#	app/src/main/java/org/mian/gitnex/activities/RepoDetailActivity.java
#	app/src/main/res/layout/list_diff_files.xml
#	app/src/main/res/layout/list_issues.xml
#	app/src/main/res/layout/list_pr.xml
This commit is contained in:
M M Arif 2022-09-07 08:37:55 +05:00
parent 146befbf07
commit fe202a7a06
185 changed files with 1734 additions and 1694 deletions

View file

@ -19,11 +19,13 @@ import org.mian.gitnex.viewmodels.AdminCronTasksViewModel;
public class AdminCronTasksActivity extends BaseActivity {
private final int PAGE = 1;
private AdminCronTasksViewModel adminCronTasksViewModel;
private View.OnClickListener onClickListener;
private AdminCronTasksAdapter adapter;
private ActivityAdminCronTasksBinding activityAdminCronTasksBinding;
private final int PAGE = 1;
private int resultLimit;
@Override

View file

@ -66,6 +66,8 @@ public class AdminGetUsersActivity extends BaseActivity implements BottomSheetLi
fetchDataAsync();
}
;
private void fetchDataAsync() {
AdminGetUsersViewModel adminUsersModel = new ViewModelProvider(this).get(AdminGetUsersViewModel.class);

View file

@ -33,10 +33,6 @@ import retrofit2.Callback;
public class CreateTeamByOrgActivity extends BaseActivity implements View.OnClickListener {
private final String[] permissionList = {"Read", "Write", "Admin"};
private final String[] accessControlsList = new String[]{"Code", "Issues", "Pull Request", "Releases", "Wiki", "External Wiki", "External Issues"};
private final boolean[] selectedAccessControlsTrueFalse = new boolean[]{false, false, false, false, false, false, false};
public int permissionSelectedChoice = -1;
private View.OnClickListener onClickListener;
private TextView teamName;
private TextView teamDesc;
@ -45,8 +41,15 @@ public class CreateTeamByOrgActivity extends BaseActivity implements View.OnClic
private TextView teamAccessControls;
private TextView teamAccessControlsArray;
private Button createTeamButton;
private final String[] permissionList = {"Read", "Write", "Admin"};
public int permissionSelectedChoice = -1;
private final String[] accessControlsList = new String[]{"Code", "Issues", "Pull Request", "Releases", "Wiki", "External Wiki", "External Issues"};
private List<String> pushAccessList;
private final boolean[] selectedAccessControlsTrueFalse = new boolean[]{false, false, false, false, false, false, false};
@Override
public void onCreate(Bundle savedInstanceState) {

View file

@ -16,7 +16,6 @@ import android.view.MenuItem;
import android.view.View;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.RelativeLayout;
import android.widget.ScrollView;
import androidx.activity.result.ActivityResultLauncher;
import androidx.activity.result.contract.ActivityResultContracts;

View file

@ -879,8 +879,4 @@ public class RepoDetailActivity extends BaseActivity implements BottomSheetListe
}
}
}

View file

@ -33,8 +33,9 @@ import retrofit2.Response;
public class RepoForksActivity extends BaseActivity {
private final String TAG = "RepositoryForks";
private ActivityRepoForksBinding activityRepoForksBinding;
private final String TAG = "RepositoryForks";
private int resultLimit;
private int pageSize = 1;
private List<Repository> forksList;

View file

@ -31,78 +31,12 @@ public class AdminCronTasksAdapter extends RecyclerView.Adapter<AdminCronTasksAd
private final List<Cron> tasksList;
public AdminCronTasksAdapter(List<Cron> tasksListMain) {
this.tasksList = tasksListMain;
}
private static void runCronTask(final Context ctx, final String taskName) {
Call<Void> call = RetrofitClient.getApiInterface(ctx).adminCronRun(taskName);
call.enqueue(new Callback<>() {
@Override
public void onResponse(@NonNull Call<Void> call, @NonNull retrofit2.Response<Void> response) {
switch(response.code()) {
case 204:
Toasty.success(ctx, ctx.getString(R.string.adminCronTaskSuccessMsg, taskName));
break;
case 401:
AlertDialogs.authorizationTokenRevokedDialog(ctx);
break;
case 403:
Toasty.error(ctx, ctx.getString(R.string.authorizeError));
break;
case 404:
Toasty.warning(ctx, ctx.getString(R.string.apiNotFound));
break;
default:
Toasty.error(ctx, ctx.getString(R.string.genericError));
}
}
@Override
public void onFailure(@NonNull Call<Void> call, @NonNull Throwable t) {
Toasty.error(ctx, ctx.getString(R.string.genericServerResponseError));
}
});
}
@NonNull
@Override
public AdminCronTasksAdapter.CronTasksViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
View v = LayoutInflater.from(parent.getContext()).inflate(R.layout.list_admin_cron_tasks, parent, false);
return new AdminCronTasksAdapter.CronTasksViewHolder(v);
}
@Override
public void onBindViewHolder(@NonNull AdminCronTasksAdapter.CronTasksViewHolder holder, int position) {
Cron currentItem = tasksList.get(position);
holder.cronTasks = currentItem;
holder.taskName.setText(StringUtils.capitalize(currentItem.getName().replace("_", " ")));
}
@Override
public int getItemCount() {
return tasksList.size();
}
static class CronTasksViewHolder extends RecyclerView.ViewHolder {
private final TextView taskName;
private Cron cronTasks;
private final TextView taskName;
private CronTasksViewHolder(View itemView) {
super(itemView);
@ -154,4 +88,71 @@ public class AdminCronTasksAdapter extends RecyclerView.Adapter<AdminCronTasksAd
}
public AdminCronTasksAdapter(List<Cron> tasksListMain) {
this.tasksList = tasksListMain;
}
@NonNull
@Override
public AdminCronTasksAdapter.CronTasksViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
View v = LayoutInflater.from(parent.getContext()).inflate(R.layout.list_admin_cron_tasks, parent, false);
return new AdminCronTasksAdapter.CronTasksViewHolder(v);
}
@Override
public void onBindViewHolder(@NonNull AdminCronTasksAdapter.CronTasksViewHolder holder, int position) {
Cron currentItem = tasksList.get(position);
holder.cronTasks = currentItem;
holder.taskName.setText(StringUtils.capitalize(currentItem.getName().replace("_", " ")));
}
private static void runCronTask(final Context ctx, final String taskName) {
Call<Void> call = RetrofitClient.getApiInterface(ctx).adminCronRun(taskName);
call.enqueue(new Callback<Void>() {
@Override
public void onResponse(@NonNull Call<Void> call, @NonNull retrofit2.Response<Void> response) {
switch(response.code()) {
case 204:
Toasty.success(ctx, ctx.getString(R.string.adminCronTaskSuccessMsg, taskName));
break;
case 401:
AlertDialogs.authorizationTokenRevokedDialog(ctx);
break;
case 403:
Toasty.error(ctx, ctx.getString(R.string.authorizeError));
break;
case 404:
Toasty.warning(ctx, ctx.getString(R.string.apiNotFound));
break;
default:
Toasty.error(ctx, ctx.getString(R.string.genericError));
}
}
@Override
public void onFailure(@NonNull Call<Void> call, @NonNull Throwable t) {
Toasty.error(ctx, ctx.getString(R.string.genericServerResponseError));
}
});
}
@Override
public int getItemCount() {
return tasksList.size();
}
}

View file

@ -30,12 +30,54 @@ import java.util.List;
public class MostVisitedReposAdapter extends RecyclerView.Adapter<MostVisitedReposAdapter.MostVisitedViewHolder> {
private final Context ctx;
private List<Repository> mostVisitedReposList;
private final Context ctx;
class MostVisitedViewHolder extends RecyclerView.ViewHolder {
private Repository repository;
private final ImageView image;
private final TextView repoName;
private final TextView orgName;
private final TextView mostVisited;
private final ImageView resetCounter;
private MostVisitedViewHolder(View itemView) {
super(itemView);
image = itemView.findViewById(R.id.image);
repoName = itemView.findViewById(R.id.repo_name);
orgName = itemView.findViewById(R.id.org_name);
mostVisited = itemView.findViewById(R.id.most_visited);
resetCounter = itemView.findViewById(R.id.reset_counter);
itemView.setOnClickListener(v -> {
Context context = v.getContext();
RepositoryContext repositoryContext = new RepositoryContext(repository.getRepositoryOwner(), repository.getRepositoryName(), context);
Intent intent = repositoryContext.getIntent(context, RepoDetailActivity.class);
context.startActivity(intent);
});
resetCounter.setOnClickListener(itemDelete -> {
MaterialAlertDialogBuilder materialAlertDialogBuilder = new MaterialAlertDialogBuilder(ctx, R.style.ThemeOverlay_Material3_Dialog_Alert);
materialAlertDialogBuilder.setTitle(ctx.getString(R.string.reset)).setMessage(ctx.getString(R.string.resetCounterDialogMessage, repository.getRepositoryName()))
.setPositiveButton(R.string.reset, (dialog, whichButton) -> {
int getRepositoryId = repository.getRepositoryId();
resetRepositoryCounter(getBindingAdapterPosition());
RepositoriesApi repositoriesApi = BaseApi.getInstance(ctx, RepositoriesApi.class);
assert repositoriesApi != null;
repositoriesApi.updateRepositoryMostVisited(0, getRepositoryId);
}).setNeutralButton(R.string.cancelButton, null).show();
});
}
public MostVisitedReposAdapter(Context ctx, List<Repository> reposListMain) {
this.ctx = ctx;
this.mostVisitedReposList = reposListMain;
}
private void resetRepositoryCounter(int position) {
@ -46,6 +88,11 @@ public class MostVisitedReposAdapter extends RecyclerView.Adapter<MostVisitedRep
Toasty.success(ctx, ctx.getResources().getString(R.string.resetMostReposCounter));
}
public MostVisitedReposAdapter(Context ctx, List<Repository> reposListMain) {
this.ctx = ctx;
this.mostVisitedReposList = reposListMain;
}
@NonNull
@Override
public MostVisitedViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
@ -87,50 +134,4 @@ public class MostVisitedReposAdapter extends RecyclerView.Adapter<MostVisitedRep
notifyDataChanged();
}
class MostVisitedViewHolder extends RecyclerView.ViewHolder {
private final ImageView image;
private final TextView repoName;
private final TextView orgName;
private final TextView mostVisited;
private final ImageView resetCounter;
private Repository repository;
private MostVisitedViewHolder(View itemView) {
super(itemView);
image = itemView.findViewById(R.id.image);
repoName = itemView.findViewById(R.id.repo_name);
orgName = itemView.findViewById(R.id.org_name);
mostVisited = itemView.findViewById(R.id.most_visited);
resetCounter = itemView.findViewById(R.id.reset_counter);
itemView.setOnClickListener(v -> {
Context context = v.getContext();
RepositoryContext repositoryContext = new RepositoryContext(repository.getRepositoryOwner(), repository.getRepositoryName(), context);
Intent intent = repositoryContext.getIntent(context, RepoDetailActivity.class);
context.startActivity(intent);
});
resetCounter.setOnClickListener(itemDelete -> {
MaterialAlertDialogBuilder materialAlertDialogBuilder = new MaterialAlertDialogBuilder(ctx, R.style.ThemeOverlay_Material3_Dialog_Alert);
materialAlertDialogBuilder.setTitle(ctx.getString(R.string.reset)).setMessage(ctx.getString(R.string.resetCounterDialogMessage, repository.getRepositoryName()))
.setPositiveButton(R.string.reset, (dialog, whichButton) -> {
int getRepositoryId = repository.getRepositoryId();
resetRepositoryCounter(getBindingAdapterPosition());
RepositoriesApi repositoriesApi = BaseApi.getInstance(ctx, RepositoriesApi.class);
assert repositoriesApi != null;
repositoriesApi.updateRepositoryMostVisited(0, getRepositoryId);
}).setNeutralButton(R.string.cancelButton, null).show();
});
}
}
}

View file

@ -49,6 +49,51 @@ public class OrganizationTeamRepositoriesAdapter extends RecyclerView.Adapter<Or
reposArr = new ArrayList<>();
}
class TeamReposViewHolder extends RecyclerView.ViewHolder {
private Repository repoInfo;
private final ImageView repoAvatar;
private final TextView name;
private final ImageView addRepoButtonAdd;
private TeamReposViewHolder(View itemView) {
super(itemView);
repoAvatar = itemView.findViewById(R.id.userAvatar);
name = itemView.findViewById(R.id.userFullName);
itemView.findViewById(R.id.userName).setVisibility(View.GONE);
addRepoButtonAdd = itemView.findViewById(R.id.addCollaboratorButtonAdd);
ImageView addRepoButtonRemove = itemView.findViewById(R.id.addCollaboratorButtonRemove);
//addRepoButtonAdd.setVisibility(View.VISIBLE);
//addRepoButtonRemove.setVisibility(View.GONE);
new Handler(Looper.getMainLooper()).postDelayed(OrganizationTeamRepositoriesAdapter.this::getTeamRepos, 200);
new Handler(Looper.getMainLooper()).postDelayed(() -> {
if(reposArr.size() > 0) {
for(int i = 0; i < reposArr.size(); i++) {
if(!reposArr.get(i).getName().equals(repoInfo.getName())) {
addRepoButtonAdd.setVisibility(View.VISIBLE);
}
else {
addRepoButtonAdd.setVisibility(View.GONE);
}
}
}
else {
addRepoButtonAdd.setVisibility(View.VISIBLE);
}
}, 500);
addRepoButtonAdd.setOnClickListener(v -> AlertDialogs.addRepoDialog(context, orgName, repoInfo.getName(), Integer.parseInt(String.valueOf(teamId)), teamName));
addRepoButtonRemove.setOnClickListener(v -> AlertDialogs.removeRepoDialog(context, orgName, repoInfo.getName(), Integer.parseInt(String.valueOf(teamId)), teamName));
}
}
@NonNull
@Override
public OrganizationTeamRepositoriesAdapter.TeamReposViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
@ -107,48 +152,4 @@ public class OrganizationTeamRepositoriesAdapter extends RecyclerView.Adapter<Or
}
}
class TeamReposViewHolder extends RecyclerView.ViewHolder {
private final ImageView repoAvatar;
private final TextView name;
private final ImageView addRepoButtonAdd;
private Repository repoInfo;
private TeamReposViewHolder(View itemView) {
super(itemView);
repoAvatar = itemView.findViewById(R.id.userAvatar);
name = itemView.findViewById(R.id.userFullName);
itemView.findViewById(R.id.userName).setVisibility(View.GONE);
addRepoButtonAdd = itemView.findViewById(R.id.addCollaboratorButtonAdd);
ImageView addRepoButtonRemove = itemView.findViewById(R.id.addCollaboratorButtonRemove);
//addRepoButtonAdd.setVisibility(View.VISIBLE);
//addRepoButtonRemove.setVisibility(View.GONE);
new Handler(Looper.getMainLooper()).postDelayed(OrganizationTeamRepositoriesAdapter.this::getTeamRepos, 200);
new Handler(Looper.getMainLooper()).postDelayed(() -> {
if(reposArr.size() > 0) {
for(int i = 0; i < reposArr.size(); i++) {
if(!reposArr.get(i).getName().equals(repoInfo.getName())) {
addRepoButtonAdd.setVisibility(View.VISIBLE);
}
else {
addRepoButtonAdd.setVisibility(View.GONE);
}
}
}
else {
addRepoButtonAdd.setVisibility(View.VISIBLE);
}
}, 500);
addRepoButtonAdd.setOnClickListener(v -> AlertDialogs.addRepoDialog(context, orgName, repoInfo.getName(), Integer.parseInt(String.valueOf(teamId)), teamName));
addRepoButtonRemove.setOnClickListener(v -> AlertDialogs.removeRepoDialog(context, orgName, repoInfo.getName(), Integer.parseInt(String.valueOf(teamId)), teamName));
}
}
}

View file

@ -36,37 +36,47 @@ public class OrganizationTeamsAdapter extends RecyclerView.Adapter<OrganizationT
private final List<Team> teamListFull;
private final OrganizationPermissions permissions;
private final String orgName;
private final Filter orgTeamsFilter = new Filter() {
@Override
protected FilterResults performFiltering(CharSequence constraint) {
List<Team> filteredList = new ArrayList<>();
if(constraint == null || constraint.length() == 0) {
filteredList.addAll(teamListFull);
}
else {
String filterPattern = constraint.toString().toLowerCase().trim();
static class OrgTeamsViewHolder extends RecyclerView.ViewHolder {
for(Team item : teamListFull) {
if(item.getName().toLowerCase().contains(filterPattern) || item.getDescription().toLowerCase().contains(filterPattern)) {
filteredList.add(item);
}
}
}
private Team team;
FilterResults results = new FilterResults();
results.values = filteredList;
private OrganizationPermissions permissions;
private final TextView teamTitle;
private final TextView teamDescription;
private final LinearLayout membersPreviewFrame;
return results;
private final List<User> userInfos;
private final OrganizationTeamMembersPreviewAdapter adapter;
private String orgName;
private OrgTeamsViewHolder(View itemView) {
super(itemView);
teamTitle = itemView.findViewById(R.id.teamTitle);
teamDescription = itemView.findViewById(R.id.teamDescription);
membersPreviewFrame = itemView.findViewById(R.id.membersPreviewFrame);
RecyclerView membersPreview = itemView.findViewById(R.id.membersPreview);
userInfos = new ArrayList<>();
adapter = new OrganizationTeamMembersPreviewAdapter(itemView.getContext(), userInfos);
membersPreview.setLayoutManager(new LinearLayoutManager(itemView.getContext(), RecyclerView.HORIZONTAL, false));
membersPreview.setAdapter(adapter);
itemView.setOnClickListener(v -> {
Context context = v.getContext();
Intent intent = new Intent(context, OrganizationTeamInfoActivity.class);
intent.putExtra("team", team);
intent.putExtra("permissions", permissions);
intent.putExtra("orgName", orgName);
context.startActivity(intent);
});
}
@Override
protected void publishResults(CharSequence constraint, FilterResults results) {
teamList.clear();
teamList.addAll((List<Team>) results.values);
notifyDataSetChanged();
}
};
}
public OrganizationTeamsAdapter(Context ctx, List<Team> teamListMain, OrganizationPermissions permissions, String orgName) {
this.context = ctx;
@ -134,43 +144,36 @@ public class OrganizationTeamsAdapter extends RecyclerView.Adapter<OrganizationT
return orgTeamsFilter;
}
static class OrgTeamsViewHolder extends RecyclerView.ViewHolder {
private final Filter orgTeamsFilter = new Filter() {
@Override
protected FilterResults performFiltering(CharSequence constraint) {
List<Team> filteredList = new ArrayList<>();
private final TextView teamTitle;
private final TextView teamDescription;
private final LinearLayout membersPreviewFrame;
private final List<User> userInfos;
private final OrganizationTeamMembersPreviewAdapter adapter;
private Team team;
private OrganizationPermissions permissions;
private String orgName;
if(constraint == null || constraint.length() == 0) {
filteredList.addAll(teamListFull);
}
else {
String filterPattern = constraint.toString().toLowerCase().trim();
private OrgTeamsViewHolder(View itemView) {
super(itemView);
for(Team item : teamListFull) {
if(item.getName().toLowerCase().contains(filterPattern) || item.getDescription().toLowerCase().contains(filterPattern)) {
filteredList.add(item);
}
}
}
teamTitle = itemView.findViewById(R.id.teamTitle);
teamDescription = itemView.findViewById(R.id.teamDescription);
membersPreviewFrame = itemView.findViewById(R.id.membersPreviewFrame);
FilterResults results = new FilterResults();
results.values = filteredList;
RecyclerView membersPreview = itemView.findViewById(R.id.membersPreview);
userInfos = new ArrayList<>();
adapter = new OrganizationTeamMembersPreviewAdapter(itemView.getContext(), userInfos);
membersPreview.setLayoutManager(new LinearLayoutManager(itemView.getContext(), RecyclerView.HORIZONTAL, false));
membersPreview.setAdapter(adapter);
itemView.setOnClickListener(v -> {
Context context = v.getContext();
Intent intent = new Intent(context, OrganizationTeamInfoActivity.class);
intent.putExtra("team", team);
intent.putExtra("permissions", permissions);
intent.putExtra("orgName", orgName);
context.startActivity(intent);
});
return results;
}
}
@Override
protected void publishResults(CharSequence constraint, FilterResults results) {
teamList.clear();
teamList.addAll((List<Team>) results.values);
notifyDataSetChanged();
}
};
}

View file

@ -30,40 +30,34 @@ public class UserGridAdapter extends BaseAdapter implements Filterable {
private final List<User> membersList;
private final Context context;
private final List<User> membersListFull;
private final Filter membersFilter = new Filter() {
@Override
protected FilterResults performFiltering(CharSequence constraint) {
List<User> filteredList = new ArrayList<>();
if(constraint == null || constraint.length() == 0) {
private class ViewHolder {
filteredList.addAll(membersListFull);
}
else {
private String userLoginId;
String filterPattern = constraint.toString().toLowerCase().trim();
private final ImageView memberAvatar;
private final TextView memberName;
private final TextView userName;
for(User item : membersListFull) {
if(item.getFullName().toLowerCase().contains(filterPattern) || item.getLogin().toLowerCase().contains(filterPattern)) {
filteredList.add(item);
}
}
}
ViewHolder(View v) {
FilterResults results = new FilterResults();
results.values = filteredList;
memberAvatar = v.findViewById(R.id.userAvatarImageView);
memberName = v.findViewById(R.id.userNameTv);
userName = v.findViewById(R.id.userName);
return results;
v.setOnClickListener(loginId -> {
Intent intent = new Intent(context, ProfileActivity.class);
intent.putExtra("username", userLoginId);
context.startActivity(intent);
});
v.setOnLongClickListener(loginId -> {
AppUtil.copyToClipboard(context, userLoginId, context.getString(R.string.copyLoginIdToClipBoard, userLoginId));
return true;
});
}
@Override
protected void publishResults(CharSequence constraint, FilterResults results) {
membersList.clear();
membersList.addAll((List) results.values);
notifyDataSetChanged();
}
};
}
public UserGridAdapter(Context ctx, List<User> membersListMain) {
@ -135,31 +129,39 @@ public class UserGridAdapter extends BaseAdapter implements Filterable {
return membersFilter;
}
private class ViewHolder {
private final Filter membersFilter = new Filter() {
@Override
protected FilterResults performFiltering(CharSequence constraint) {
List<User> filteredList = new ArrayList<>();
private final ImageView memberAvatar;
private final TextView memberName;
private final TextView userName;
private String userLoginId;
if(constraint == null || constraint.length() == 0) {
ViewHolder(View v) {
filteredList.addAll(membersListFull);
}
else {
memberAvatar = v.findViewById(R.id.userAvatarImageView);
memberName = v.findViewById(R.id.userNameTv);
userName = v.findViewById(R.id.userName);
String filterPattern = constraint.toString().toLowerCase().trim();
v.setOnClickListener(loginId -> {
Intent intent = new Intent(context, ProfileActivity.class);
intent.putExtra("username", userLoginId);
context.startActivity(intent);
});
for(User item : membersListFull) {
if(item.getFullName().toLowerCase().contains(filterPattern) || item.getLogin().toLowerCase().contains(filterPattern)) {
filteredList.add(item);
}
}
}
v.setOnLongClickListener(loginId -> {
AppUtil.copyToClipboard(context, userLoginId, context.getString(R.string.copyLoginIdToClipBoard, userLoginId));
return true;
});
FilterResults results = new FilterResults();
results.values = filteredList;
return results;
}
}
@Override
protected void publishResults(CharSequence constraint, FilterResults results) {
membersList.clear();
membersList.addAll((List) results.values);
notifyDataSetChanged();
}
};
}

View file

@ -1,17 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
<LinearLayout android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?attr/primaryBackgroundColor"
android:orientation="vertical">
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android"
android:background="?attr/primaryBackgroundColor">
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/Widget.AppCompat.SearchView"
app:elevation="@dimen/dimen0dp">
app:elevation="@dimen/dimen0dp"
android:theme="@style/Widget.AppCompat.SearchView">
<com.google.android.material.appbar.MaterialToolbar
android:id="@+id/toolbar"
@ -23,24 +23,24 @@
android:id="@+id/close"
android:layout_width="@dimen/dimen26dp"
android:layout_height="@dimen/dimen26dp"
android:layout_marginStart="@dimen/dimen16dp"
android:layout_marginEnd="@dimen/dimen16dp"
android:background="?android:attr/selectableItemBackgroundBorderless"
android:clickable="true"
android:contentDescription="@string/close"
android:focusable="true"
android:layout_marginStart="@dimen/dimen16dp"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:contentDescription="@string/close"
android:background="?android:attr/selectableItemBackgroundBorderless"
android:focusable="true"
android:clickable="true"
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbar_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:maxLines="1"
android:text="@string/collaborator"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:maxLines="1"
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -48,48 +48,48 @@
<com.google.android.material.progressindicator.LinearProgressIndicator
android:id="@+id/progressBar"
style="@style/Widget.MaterialComponents.LinearProgressIndicator"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:indeterminate="true"
style="@style/Widget.MaterialComponents.LinearProgressIndicator"
android:visibility="gone"
app:indicatorColor="?attr/progressIndicatorColor" />
app:indicatorColor="?attr/progressIndicatorColor"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/dimen10dp"
android:layout_marginTop="@dimen/dimen10dp"
android:layout_marginEnd="@dimen/dimen10dp"
android:layout_marginTop="@dimen/dimen10dp"
android:layout_marginBottom="@dimen/dimen10dp">
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/addCollaboratorSearchLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:boxBackgroundColor="?attr/inputBackgroundColor"
android:textColorHint="?attr/hintColor"
app:hintTextColor="?attr/hintColor"
app:boxStrokeErrorColor="@color/darkRed"
android:layout_marginTop="@dimen/dimen8dp"
android:layout_marginBottom="@dimen/dimen8dp"
android:hint="@string/addCollaboratorSearchHint"
android:textColorHint="?attr/hintColor"
app:boxBackgroundColor="?attr/inputBackgroundColor"
app:boxStrokeErrorColor="@color/darkRed"
app:startIconDrawable="@drawable/ic_search"
app:startIconTint="?attr/iconsColor"
app:endIconMode="clear_text"
app:endIconTint="?attr/iconsColor"
app:hintTextColor="?attr/hintColor"
app:startIconDrawable="@drawable/ic_search"
app:startIconTint="?attr/iconsColor">
android:hint="@string/addCollaboratorSearchHint">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/addCollaboratorSearch"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:imeOptions="actionSend"
android:inputType="text"
android:singleLine="true"
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:singleLine="true"
android:imeOptions="actionSend"
android:inputType="text"
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -104,7 +104,7 @@
android:text="@string/noDataFound"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp"
android:visibility="gone" />
android:visibility="gone"/>
<FrameLayout
android:layout_width="match_parent"
@ -115,7 +115,7 @@
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerViewUserSearch"
android:layout_width="match_parent"
android:layout_height="match_parent" />
android:layout_height="match_parent"/>
</FrameLayout>

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/layoutNewAccount"
android:layout_width="match_parent"
@ -29,7 +30,7 @@
android:layout_marginEnd="@dimen/dimen16dp"
android:contentDescription="@string/close"
android:gravity="center_vertical"
android:src="@drawable/ic_arrow_back" />
android:src="@drawable/ic_arrow_back"/>
<TextView
android:id="@+id/toolbarTitle"
@ -42,7 +43,7 @@
android:singleLine="true"
android:text="@string/addNewAccount"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -76,7 +77,7 @@
android:inputType="none"
android:labelFor="@+id/protocolSpinner"
android:textColor="?attr/inputTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -105,7 +106,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -134,7 +135,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -146,7 +147,7 @@
android:text="@string/addNewAccountText"
android:textColor="@color/btnTextColor"
android:textSize="@dimen/dimen16sp"
android:textStyle="bold" />
android:textStyle="bold"/>
</LinearLayout>

View file

@ -1,17 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
<LinearLayout android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?attr/primaryBackgroundColor"
android:orientation="vertical">
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android"
android:background="?attr/primaryBackgroundColor">
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/Widget.AppCompat.SearchView"
app:elevation="@dimen/dimen0dp">
app:elevation="@dimen/dimen0dp"
android:theme="@style/Widget.AppCompat.SearchView">
<com.google.android.material.appbar.MaterialToolbar
android:id="@+id/toolbar"
@ -23,24 +23,24 @@
android:id="@+id/close"
android:layout_width="@dimen/dimen26dp"
android:layout_height="@dimen/dimen26dp"
android:layout_marginStart="@dimen/dimen16dp"
android:layout_marginEnd="@dimen/dimen16dp"
android:background="?android:attr/selectableItemBackgroundBorderless"
android:clickable="true"
android:contentDescription="@string/close"
android:focusable="true"
android:layout_marginStart="@dimen/dimen16dp"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:contentDescription="@string/close"
android:background="?android:attr/selectableItemBackgroundBorderless"
android:focusable="true"
android:clickable="true"
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbar_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:maxLines="1"
android:text="@string/addRemove"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:maxLines="1"
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -48,47 +48,47 @@
<com.google.android.material.progressindicator.LinearProgressIndicator
android:id="@+id/progress_bar"
style="@style/Widget.MaterialComponents.LinearProgressIndicator"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:indeterminate="true"
android:visibility="gone"
app:indicatorColor="?attr/progressIndicatorColor" />
android:indeterminate="true"
style="@style/Widget.MaterialComponents.LinearProgressIndicator"
app:indicatorColor="?attr/progressIndicatorColor"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/dimen10dp"
android:layout_marginTop="@dimen/dimen10dp"
android:layout_marginEnd="@dimen/dimen10dp"
android:layout_marginTop="@dimen/dimen10dp"
android:layout_marginBottom="@dimen/dimen10dp">
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/addNewTeamMemberLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:boxBackgroundColor="?attr/inputBackgroundColor"
android:textColorHint="?attr/hintColor"
app:hintTextColor="?attr/hintColor"
app:boxStrokeErrorColor="@color/darkRed"
android:layout_marginTop="@dimen/dimen8dp"
android:layout_marginBottom="@dimen/dimen8dp"
android:hint="@string/addCollaboratorSearchHint"
android:textColorHint="?attr/hintColor"
app:boxBackgroundColor="?attr/inputBackgroundColor"
app:boxStrokeErrorColor="@color/darkRed"
app:startIconDrawable="@drawable/ic_search"
app:startIconTint="?attr/iconsColor"
app:endIconMode="clear_text"
app:endIconTint="?attr/iconsColor"
app:hintTextColor="?attr/hintColor"
app:startIconDrawable="@drawable/ic_search"
app:startIconTint="?attr/iconsColor">
android:hint="@string/addCollaboratorSearchHint">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/addNewTeamMember"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="text"
android:singleLine="true"
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:singleLine="true"
android:inputType="text"
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -103,7 +103,7 @@
android:text="@string/noDataFound"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp"
android:visibility="gone" />
android:visibility="gone"/>
<FrameLayout
android:layout_width="match_parent"
@ -114,7 +114,7 @@
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerViewUserSearch"
android:layout_width="match_parent"
android:layout_height="match_parent" />
android:layout_height="match_parent"/>
</FrameLayout>

View file

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="?attr/primaryBackgroundColor"
android:orientation="vertical">
@ -10,8 +10,8 @@
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/Widget.AppCompat.SearchView"
app:elevation="@dimen/dimen0dp">
app:elevation="@dimen/dimen0dp"
android:theme="@style/Widget.AppCompat.SearchView">
<com.google.android.material.appbar.MaterialToolbar
android:id="@+id/toolbar"
@ -23,24 +23,24 @@
android:id="@+id/close"
android:layout_width="@dimen/dimen26dp"
android:layout_height="@dimen/dimen26dp"
android:layout_marginStart="@dimen/dimen16dp"
android:layout_marginEnd="@dimen/dimen16dp"
android:background="?android:attr/selectableItemBackgroundBorderless"
android:clickable="true"
android:contentDescription="@string/close"
android:focusable="true"
android:layout_marginStart="@dimen/dimen16dp"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:contentDescription="@string/close"
android:background="?android:attr/selectableItemBackgroundBorderless"
android:focusable="true"
android:clickable="true"
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbarTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:maxLines="1"
android:text="@string/adminCron"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:maxLines="1"
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -49,8 +49,8 @@
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="@dimen/dimen56dp"
android:background="?attr/primaryBackgroundColor"
android:layout_marginTop="@dimen/dimen56dp"
android:padding="@dimen/dimen8dp">
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
@ -61,7 +61,7 @@
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
android:layout_height="match_parent"/>
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
@ -69,12 +69,12 @@
<com.google.android.material.progressindicator.LinearProgressIndicator
android:id="@+id/progress_bar"
style="@style/Widget.Material3.LinearProgressIndicator"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/dimen56dp"
android:indeterminate="true"
app:indicatorColor="?attr/progressIndicatorColor" />
style="@style/Widget.Material3.LinearProgressIndicator"
app:indicatorColor="?attr/progressIndicatorColor"/>
<TextView
android:id="@+id/noData"
@ -85,6 +85,6 @@
android:text="@string/noDataFound"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp"
android:visibility="gone" />
android:visibility="gone"/>
</RelativeLayout>

View file

@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?attr/primaryBackgroundColor"
android:orientation="vertical">
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:background="?attr/primaryBackgroundColor">
<FrameLayout
android:layout_width="match_parent"
@ -15,13 +15,13 @@
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
android:id="@+id/pull_to_refresh"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/dimen56dp">
android:layout_marginTop="@dimen/dimen56dp"
android:layout_height="wrap_content">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />
android:layout_height="match_parent"/>
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
@ -31,8 +31,8 @@
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/Widget.AppCompat.SearchView"
app:elevation="@dimen/dimen0dp">
app:elevation="@dimen/dimen0dp"
android:theme="@style/Widget.AppCompat.SearchView">
<com.google.android.material.appbar.MaterialToolbar
android:id="@+id/toolbar"
@ -44,27 +44,27 @@
android:id="@+id/close"
android:layout_width="@dimen/dimen26dp"
android:layout_height="@dimen/dimen26dp"
android:layout_marginStart="@dimen/dimen16dp"
android:layout_marginEnd="@dimen/dimen16dp"
android:background="?android:attr/selectableItemBackgroundBorderless"
android:clickable="true"
android:contentDescription="@string/close"
android:focusable="true"
android:layout_marginStart="@dimen/dimen16dp"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:contentDescription="@string/close"
android:background="?android:attr/selectableItemBackgroundBorderless"
android:focusable="true"
android:clickable="true"
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbar_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginEnd="@dimen/dimen20dp"
android:text="@string/adminUsers"
android:textColor="?attr/primaryTextColor"
android:ellipsize="none"
android:scrollbars="horizontal"
android:singleLine="true"
android:text="@string/adminUsers"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:layout_marginEnd="@dimen/dimen20dp"
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -72,12 +72,12 @@
<com.google.android.material.progressindicator.LinearProgressIndicator
android:id="@+id/progress_bar"
style="@style/Widget.Material3.LinearProgressIndicator"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/dimen56dp"
android:indeterminate="true"
app:indicatorColor="?attr/progressIndicatorColor" />
style="@style/Widget.Material3.LinearProgressIndicator"
app:indicatorColor="?attr/progressIndicatorColor"/>
<TextView
android:id="@+id/no_data_users"
@ -88,6 +88,6 @@
android:text="@string/noDataFound"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp"
android:visibility="gone" />
android:visibility="gone"/>
</RelativeLayout>

View file

@ -30,7 +30,7 @@
android:contentDescription="@string/close"
android:focusable="true"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbar_title"
@ -40,7 +40,7 @@
android:maxLines="1"
android:text="@string/codeEditor"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -57,7 +57,7 @@
android:dropDownHorizontalOffset="@dimen/dimen0dp"
android:dropDownSelector="@color/colorPrimary"
android:gravity="top|start"
android:textSize="@dimen/dimen14sp" />
android:textSize="@dimen/dimen14sp"/>
<RelativeLayout
android:id="@+id/source_info_layout"
@ -75,7 +75,7 @@
android:gravity="center"
android:textColor="@color/colorAccent"
android:textSize="@dimen/dimen14sp"
tools:text="Java" />
tools:text="Java"/>
<TextView
android:id="@+id/source_position"
@ -87,7 +87,7 @@
android:textColor="@color/colorAccent"
android:textSize="@dimen/dimen14sp"
tools:ignore="RelativeOverlap"
tools:text="0:0" />
tools:text="0:0"/>
</RelativeLayout>
</RelativeLayout>

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
@ -7,6 +8,6 @@
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?attr/primaryBackgroundColor" />
android:background="?attr/primaryBackgroundColor"/>
</androidx.constraintlayout.widget.ConstraintLayout>

View file

@ -30,7 +30,7 @@
android:contentDescription="@string/close"
android:focusable="true"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbar_title"
@ -43,7 +43,7 @@
android:singleLine="true"
android:text="@string/commitTitle"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -52,8 +52,8 @@
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
android:id="@+id/pullToRefresh"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/dimen56dp">
android:layout_marginTop="@dimen/dimen56dp"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="match_parent"
@ -64,7 +64,7 @@
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
android:layout_height="match_parent"/>
</RelativeLayout>
@ -77,7 +77,7 @@
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/dimen56dp"
android:indeterminate="true"
app:indicatorColor="?attr/progressIndicatorColor" />
app:indicatorColor="?attr/progressIndicatorColor"/>
<TextView
android:id="@+id/noDataCommits"
@ -88,6 +88,6 @@
android:text="@string/noDataFound"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp"
android:visibility="gone" />
android:visibility="gone"/>
</RelativeLayout>

View file

@ -30,7 +30,7 @@
android:contentDescription="@string/close"
android:focusable="true"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbarTitle"
@ -40,7 +40,7 @@
android:maxLines="1"
android:text="@string/pageTitleNewFile"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -83,7 +83,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -111,7 +111,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen14sp" />
android:textSize="@dimen/dimen14sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -124,7 +124,7 @@
android:layout_marginBottom="@dimen/dimen8dp"
android:text="@string/openInCodeEditor"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen14sp" />
android:textSize="@dimen/dimen14sp"/>
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/newFileBranchesLayout"
@ -152,7 +152,7 @@
android:labelFor="@id/new_file_branches"
android:singleLine="true"
android:textColor="?attr/inputTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -182,7 +182,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -193,7 +193,7 @@
android:layout_marginTop="@dimen/dimen8dp"
android:text="@string/newFileButtonCopy"
android:textColor="@color/btnTextColor"
android:textStyle="bold" />
android:textStyle="bold"/>
</LinearLayout>

View file

@ -30,7 +30,7 @@
android:contentDescription="@string/close"
android:focusable="true"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbar_title"
@ -40,7 +40,7 @@
android:maxLines="1"
android:text="@string/pageTitleCreateNewIssue"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -53,7 +53,7 @@
android:layout_height="wrap_content"
android:indeterminate="true"
android:visibility="gone"
app:indicatorColor="?attr/progressIndicatorColor" />
app:indicatorColor="?attr/progressIndicatorColor"/>
<ScrollView
android:layout_width="match_parent"
@ -93,7 +93,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -121,7 +121,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -144,7 +144,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -168,7 +168,7 @@
android:inputType="none"
android:labelFor="@+id/newIssueMilestoneSpinner"
android:textColor="?attr/inputTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -191,7 +191,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -218,7 +218,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -229,7 +229,7 @@
android:layout_marginTop="@dimen/dimen8dp"
android:text="@string/newCreateButtonCopy"
android:textColor="@color/btnTextColor"
android:textStyle="bold" />
android:textStyle="bold"/>
</LinearLayout>

View file

@ -30,7 +30,7 @@
android:contentDescription="@string/close"
android:focusable="true"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbar_title"
@ -40,7 +40,7 @@
android:maxLines="1"
android:text="@string/pageTitleCreateLabel"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -73,7 +73,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -92,7 +92,7 @@
android:gravity="center_vertical"
android:text="@string/labelColor"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
<com.google.android.material.card.MaterialCardView
style="?attr/materialCardViewFilledStyle"
@ -105,7 +105,7 @@
android:id="@+id/colorPicker"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/releasePre" />
android:background="@color/releasePre"/>
</com.google.android.material.card.MaterialCardView>
@ -118,7 +118,7 @@
android:layout_marginTop="@dimen/dimen8dp"
android:text="@string/newCreateButtonCopy"
android:textColor="@color/btnTextColor"
android:textStyle="bold" />
android:textStyle="bold"/>
</LinearLayout>

View file

@ -30,7 +30,7 @@
android:contentDescription="@string/close"
android:focusable="true"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbar_title"
@ -40,7 +40,7 @@
android:maxLines="1"
android:text="@string/pageTitleCreateMilestone"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -81,7 +81,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -112,7 +112,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -139,7 +139,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -150,7 +150,7 @@
android:layout_marginTop="@dimen/dimen8dp"
android:text="@string/newCreateButtonCopy"
android:textColor="@color/btnTextColor"
android:textStyle="bold" />
android:textStyle="bold"/>
</LinearLayout>

View file

@ -30,7 +30,7 @@
android:contentDescription="@string/close"
android:focusable="true"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbar_title"
@ -40,7 +40,7 @@
android:maxLines="1"
android:text="@string/adminCreateNewUser"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -81,7 +81,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -108,7 +108,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -135,7 +135,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -161,7 +161,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -172,7 +172,7 @@
android:layout_marginTop="@dimen/dimen8dp"
android:text="@string/newCreateButtonCopy"
android:textColor="@color/btnTextColor"
android:textStyle="bold" />
android:textStyle="bold"/>
</LinearLayout>

View file

@ -30,7 +30,7 @@
android:contentDescription="@string/close"
android:focusable="true"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbar_title"
@ -40,7 +40,7 @@
android:maxLines="1"
android:text="@string/pageTitleCreateOrganization"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -81,7 +81,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -112,7 +112,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -123,7 +123,7 @@
android:layout_marginTop="@dimen/dimen8dp"
android:text="@string/newCreateButtonCopy"
android:textColor="@color/btnTextColor"
android:textStyle="bold" />
android:textStyle="bold"/>
</LinearLayout>

View file

@ -30,7 +30,7 @@
android:contentDescription="@string/close"
android:focusable="true"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbarTitle"
@ -40,7 +40,7 @@
android:maxLines="1"
android:text="@string/pageTitleNewPullRequest"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -53,7 +53,7 @@
android:layout_height="wrap_content"
android:indeterminate="true"
android:visibility="gone"
app:indicatorColor="?attr/progressIndicatorColor" />
app:indicatorColor="?attr/progressIndicatorColor"/>
<ScrollView
android:layout_width="match_parent"
@ -93,7 +93,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -121,7 +121,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -145,7 +145,7 @@
android:inputType="none"
android:labelFor="@+id/mergeIntoBranchSpinner"
android:textColor="?attr/inputTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -169,7 +169,7 @@
android:inputType="none"
android:labelFor="@+id/pullFromBranchSpinner"
android:textColor="?attr/inputTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -193,7 +193,7 @@
android:inputType="none"
android:labelFor="@+id/milestonesSpinner"
android:textColor="?attr/inputTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -216,7 +216,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -243,7 +243,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -254,7 +254,7 @@
android:layout_marginTop="@dimen/dimen8dp"
android:text="@string/newCreateButtonCopy"
android:textColor="@color/btnTextColor"
android:textStyle="bold" />
android:textStyle="bold"/>
</LinearLayout>

View file

@ -30,7 +30,7 @@
android:contentDescription="@string/close"
android:focusable="true"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbar_title"
@ -40,7 +40,7 @@
android:maxLines="1"
android:text="@string/createRelease"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -81,7 +81,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -109,7 +109,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -137,7 +137,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -161,7 +161,7 @@
android:inputType="none"
android:labelFor="@+id/releaseBranch"
android:textColor="?attr/inputTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -173,7 +173,7 @@
android:checked="false"
android:text="@string/releaseTypeText"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
<CheckBox
android:id="@+id/releaseDraft"
@ -183,7 +183,7 @@
android:checked="false"
android:text="@string/releaseDraftText"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
<com.google.android.material.button.MaterialButton
android:id="@+id/createNewRelease"
@ -192,7 +192,7 @@
android:layout_marginTop="@dimen/dimen8dp"
android:text="@string/newCreateButtonCopy"
android:textColor="@color/btnTextColor"
android:textStyle="bold" />
android:textStyle="bold"/>
<com.google.android.material.button.MaterialButton
android:id="@+id/createNewTag"
@ -201,7 +201,7 @@
android:layout_marginTop="@dimen/dimen8dp"
android:text="@string/create_tag"
android:textColor="@color/btnTextColor"
android:textStyle="bold" />
android:textStyle="bold"/>
</LinearLayout>

View file

@ -30,7 +30,7 @@
android:contentDescription="@string/close"
android:focusable="true"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbar_title"
@ -40,7 +40,7 @@
android:maxLines="1"
android:text="@string/pageTitleNewRepo"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -77,7 +77,7 @@
android:inputType="none"
android:labelFor="@+id/ownerSpinner"
android:textColor="?attr/inputTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -103,7 +103,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -133,7 +133,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -145,7 +145,7 @@
android:checked="true"
android:text="@string/newRepoPrivateCopy"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
<com.google.android.material.button.MaterialButton
android:id="@+id/createNewRepoButton"
@ -154,7 +154,7 @@
android:layout_marginTop="@dimen/dimen8dp"
android:text="@string/newCreateButtonCopy"
android:textColor="@color/btnTextColor"
android:textStyle="bold" />
android:textStyle="bold"/>
</LinearLayout>

View file

@ -30,7 +30,7 @@
android:contentDescription="@string/close"
android:focusable="true"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbar_title"
@ -40,7 +40,7 @@
android:maxLines="1"
android:text="@string/pageTitleCreateTeam"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -81,7 +81,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -111,7 +111,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -136,7 +136,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -147,7 +147,7 @@
android:gravity="start"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen12sp"
android:visibility="gone" />
android:visibility="gone"/>
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/teamAccessControlsLayout"
@ -170,7 +170,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -178,7 +178,7 @@
android:id="@+id/teamAccessControlsArray"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="gone" />
android:visibility="gone"/>
<com.google.android.material.button.MaterialButton
android:id="@+id/createTeamButton"
@ -187,7 +187,7 @@
android:layout_marginTop="@dimen/dimen8dp"
android:text="@string/newCreateButtonCopy"
android:textColor="@color/btnTextColor"
android:textStyle="bold" />
android:textStyle="bold"/>
</LinearLayout>

View file

@ -12,7 +12,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:indeterminate="true"
app:indicatorColor="?attr/progressIndicatorColor" />
app:indicatorColor="?attr/progressIndicatorColor"/>
<ScrollView
android:layout_width="match_parent"
@ -41,7 +41,7 @@
android:layout_height="wrap_content"
android:text="@string/accountDoesNotExist"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
<com.google.android.material.button.MaterialButton
android:id="@+id/addNewAccount"
@ -51,7 +51,7 @@
android:text="@string/addNewAccountText"
android:textColor="@color/btnTextColor"
android:textSize="@dimen/dimen16sp"
android:textStyle="bold" />
android:textStyle="bold"/>
<com.google.android.material.button.MaterialButton
android:id="@+id/openInBrowser"
@ -60,7 +60,7 @@
android:layout_marginTop="@dimen/dimen8dp"
android:text="@string/openWebRepo"
android:textColor="@color/btnTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
<com.google.android.material.button.MaterialButton
android:id="@+id/launchApp"
@ -70,7 +70,7 @@
android:text="@string/launchApp"
android:textColor="@color/btnTextColor"
android:textSize="@dimen/dimen16sp"
android:textStyle="bold" />
android:textStyle="bold"/>
</LinearLayout>
@ -91,7 +91,7 @@
android:layout_height="wrap_content"
android:text="@string/noActionText"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
<com.google.android.material.button.MaterialButton
android:id="@+id/repository"
@ -101,7 +101,7 @@
android:text="@string/navRepos"
android:textColor="@color/btnTextColor"
android:textSize="@dimen/dimen16sp"
android:textStyle="bold" />
android:textStyle="bold"/>
<com.google.android.material.button.MaterialButton
android:id="@+id/organization"
@ -111,7 +111,7 @@
android:text="@string/navOrg"
android:textColor="@color/btnTextColor"
android:textSize="@dimen/dimen16sp"
android:textStyle="bold" />
android:textStyle="bold"/>
<com.google.android.material.button.MaterialButton
android:id="@+id/notification"
@ -121,7 +121,7 @@
android:text="@string/pageTitleNotifications"
android:textColor="@color/btnTextColor"
android:textSize="@dimen/dimen16sp"
android:textStyle="bold" />
android:textStyle="bold"/>
<com.google.android.material.button.MaterialButton
android:id="@+id/explore"
@ -131,7 +131,7 @@
android:text="@string/pageTitleExplore"
android:textColor="@color/btnTextColor"
android:textSize="@dimen/dimen16sp"
android:textStyle="bold" />
android:textStyle="bold"/>
<com.google.android.material.button.MaterialButton
android:id="@+id/launchApp2"
@ -141,7 +141,7 @@
android:text="@string/launchApp"
android:textColor="@color/btnTextColor"
android:textSize="@dimen/dimen16sp"
android:textStyle="bold" />
android:textStyle="bold"/>
</LinearLayout>

View file

@ -8,6 +8,6 @@
<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
android:layout_height="match_parent"/>
</LinearLayout>

View file

@ -30,7 +30,7 @@
android:contentDescription="@string/close"
android:focusable="true"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbar_title"
@ -40,7 +40,7 @@
android:maxLines="1"
android:text="@string/editIssueNavHeader"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -81,7 +81,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -109,7 +109,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -133,7 +133,7 @@
android:inputType="none"
android:labelFor="@+id/editIssueMilestoneSpinner"
android:textColor="?attr/inputTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -160,7 +160,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -171,7 +171,7 @@
android:layout_marginTop="@dimen/dimen8dp"
android:text="@string/saveButton"
android:textColor="@color/btnTextColor"
android:textStyle="bold" />
android:textStyle="bold"/>
</LinearLayout>

View file

@ -31,7 +31,7 @@
android:contentDescription="@string/close"
android:focusable="true"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbar_title"
@ -44,7 +44,7 @@
android:singleLine="true"
android:text="@string/defaultFilename"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -56,7 +56,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:indeterminate="true"
app:indicatorColor="?attr/progressIndicatorColor" />
app:indicatorColor="?attr/progressIndicatorColor"/>
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
@ -83,7 +83,7 @@
android:layout_height="wrap_content"
android:textColor="?attr/primaryTextColor"
android:textIsSelectable="true"
android:textSize="@dimen/dimen14sp" />
android:textSize="@dimen/dimen14sp"/>
<TextView
android:id="@+id/markdownTv"
@ -92,7 +92,7 @@
android:textColor="?attr/primaryTextColor"
android:textIsSelectable="true"
android:textSize="@dimen/dimen14sp"
android:visibility="gone" />
android:visibility="gone"/>
</LinearLayout>
@ -101,14 +101,14 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="gone"
tools:visibility="visible" />
tools:visibility="visible"/>
<com.github.chrisbanes.photoview.PhotoView
android:id="@+id/photo_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="@dimen/dimen16dp"
android:visibility="gone" />
android:visibility="gone"/>
</LinearLayout>

View file

@ -23,7 +23,7 @@
android:layout_marginBottom="@dimen/dimen20dp"
android:baselineAligned="false"
android:contentDescription="@string/appName"
android:src="@mipmap/app_logo" />
android:src="@mipmap/app_logo"/>
<TextView
android:layout_width="match_parent"
@ -32,7 +32,7 @@
android:gravity="start"
android:text="@string/loginMethodText"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen12sp" />
android:textSize="@dimen/dimen12sp"/>
<RadioGroup
android:id="@+id/loginMethod"
@ -48,14 +48,14 @@
android:layout_height="@dimen/dimen36dp"
android:checked="true"
android:text="@string/copyToken"
android:textColor="?attr/primaryTextColor" />
android:textColor="?attr/primaryTextColor"/>
<RadioButton
android:id="@+id/loginUsernamePassword"
android:layout_width="wrap_content"
android:layout_height="@dimen/dimen36dp"
android:text="@string/loginViaPassword"
android:textColor="?attr/primaryTextColor" />
android:textColor="?attr/primaryTextColor"/>
</RadioGroup>
@ -79,7 +79,7 @@
android:inputType="none"
android:labelFor="@+id/httpsSpinner"
android:textColor="?attr/inputTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -108,7 +108,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -136,7 +136,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -165,7 +165,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -197,7 +197,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -225,7 +225,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -236,7 +236,7 @@
android:layout_marginTop="@dimen/dimen8dp"
android:text="@string/btnLogin"
android:textColor="@color/btnTextColor"
android:textStyle="bold" />
android:textStyle="bold"/>
<TextView
android:layout_width="match_parent"
@ -249,7 +249,7 @@
android:text="@string/appRepoLink"
android:textColor="?attr/primaryTextColor"
android:textColorLink="@color/lightBlue"
android:textSize="@dimen/dimen14sp" />
android:textSize="@dimen/dimen14sp"/>
<TextView
android:id="@+id/appVersion"
@ -260,7 +260,7 @@
android:layout_weight="1"
android:maxLines="1"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen14sp" />
android:textSize="@dimen/dimen14sp"/>
</LinearLayout>

View file

@ -1,11 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
<androidx.drawerlayout.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".activities.MainActivity"
android:id="@+id/drawer_layout"
tools:openDrawer="start">
<LinearLayout
@ -14,39 +15,39 @@
android:orientation="vertical">
<com.google.android.material.appbar.MaterialToolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/primaryBackgroundColor"
android:elevation="@dimen/dimen0dp"
android:id="@+id/toolbar"
app:titleTextColor="?attr/primaryTextColor"
android:theme="@style/Widget.AppCompat.SearchView"
app:titleTextColor="?attr/primaryTextColor">
android:elevation="@dimen/dimen0dp">
<TextView
android:id="@+id/toolbar_title"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center_vertical"
android:gravity="center_vertical"
android:textSize="@dimen/dimen20sp"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:id="@+id/toolbar_title"/>
</com.google.android.material.appbar.MaterialToolbar>
<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
android:layout_height="match_parent"/>
</LinearLayout>
<com.google.android.material.navigation.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="?attr/primaryBackgroundColor"
android:id="@+id/nav_view"
app:headerLayout="@layout/nav_header"
app:menu="@menu/drawer_menu" />
android:background="?attr/primaryBackgroundColor"
app:menu="@menu/drawer_menu"/>
</androidx.drawerlayout.widget.DrawerLayout>

View file

@ -30,7 +30,7 @@
android:contentDescription="@string/close"
android:focusable="true"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:src="@drawable/ic_close"/>
<HorizontalScrollView
android:id="@+id/replyToPRNavHeader"
@ -49,7 +49,7 @@
android:layout_gravity="center_vertical"
android:maxLines="1"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</HorizontalScrollView>
@ -95,7 +95,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -122,7 +122,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -146,7 +146,7 @@
android:inputType="none"
android:labelFor="@+id/mergeSpinner"
android:textColor="?attr/inputTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -159,7 +159,7 @@
android:text="@string/deleteBranchAfterMerge"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen16sp"
android:visibility="gone" />
android:visibility="gone"/>
<TextView
android:id="@+id/deleteBranchForkInfo"
@ -169,7 +169,7 @@
android:gravity="start"
android:text="@string/deleteBranchForkInfo"
android:textColor="?attr/hintColor"
android:textSize="@dimen/dimen12sp" />
android:textSize="@dimen/dimen12sp"/>
<TextView
android:id="@+id/mergeInfo"
@ -179,7 +179,7 @@
android:gravity="start"
android:text="@string/mergeNoteText"
android:textColor="?attr/hintColor"
android:textSize="@dimen/dimen12sp" />
android:textSize="@dimen/dimen12sp"/>
<com.google.android.material.button.MaterialButton
android:id="@+id/mergeButton"
@ -188,7 +188,7 @@
android:layout_marginTop="@dimen/dimen8dp"
android:text="@string/mergePullRequestButtonText"
android:textColor="@color/btnTextColor"
android:textStyle="bold" />
android:textStyle="bold"/>
<TextView
android:id="@+id/mergeInfoDisabledMessage"
@ -199,7 +199,7 @@
android:text="@string/mergeInfoDisabledMessage"
android:textColor="?attr/hintColor"
android:textSize="@dimen/dimen12sp"
android:visibility="gone" />
android:visibility="gone"/>
</LinearLayout>

View file

@ -31,7 +31,7 @@
android:layout_gravity="center_vertical"
android:gravity="center_vertical"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -50,31 +50,31 @@
android:id="@+id/tabItemInfo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/tabTextInfo" />
android:text="@string/tabTextInfo"/>
<com.google.android.material.tabs.TabItem
android:id="@+id/tabItem_repos"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/navRepos" />
android:text="@string/navRepos"/>
<com.google.android.material.tabs.TabItem
android:id="@+id/tabItem_labels"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/newIssueLabelsTitle" />
android:text="@string/newIssueLabelsTitle"/>
<com.google.android.material.tabs.TabItem
android:id="@+id/tabItem_teams"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/orgTabTeams" />
android:text="@string/orgTabTeams"/>
<com.google.android.material.tabs.TabItem
android:id="@+id/tabItem_members"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/orgTabMembers" />
android:text="@string/orgTabMembers"/>
</com.google.android.material.tabs.TabLayout>
@ -85,6 +85,6 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>

View file

@ -30,7 +30,7 @@
android:contentDescription="@string/close"
android:focusable="true"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbar_title"
@ -39,7 +39,7 @@
android:layout_gravity="center_vertical"
android:maxLines="1"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -52,7 +52,7 @@
app:tabIndicatorFullWidth="true"
app:tabMode="auto"
app:tabTextAppearance="@style/customTabLayout"
app:tabTextColor="?attr/primaryTextColor" />
app:tabTextColor="?attr/primaryTextColor"/>
</com.google.android.material.appbar.AppBarLayout>
@ -60,6 +60,6 @@
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</LinearLayout>

View file

@ -29,7 +29,7 @@
android:layout_gravity="center_vertical"
android:gravity="center_vertical"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -41,7 +41,7 @@
app:tabIndicatorColor="?attr/pagerTabIndicatorColor"
app:tabMode="scrollable"
app:tabTextAppearance="@style/customTabLayout"
app:tabTextColor="?attr/primaryTextColor" />
app:tabTextColor="?attr/primaryTextColor"/>
</com.google.android.material.appbar.AppBarLayout>
@ -49,6 +49,6 @@
android:id="@+id/profileContainer"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>

View file

@ -32,7 +32,7 @@
android:contentDescription="@string/close"
android:focusable="true"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbar_title"
@ -42,7 +42,7 @@
android:maxLines="1"
android:text="@string/pageTitleAddEmail"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -75,7 +75,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -86,7 +86,7 @@
android:layout_marginTop="@dimen/dimen8dp"
android:text="@string/saveButton"
android:textColor="@color/btnTextColor"
android:textStyle="bold" />
android:textStyle="bold"/>
</LinearLayout>

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/main_content"
@ -32,7 +33,7 @@
android:paddingEnd="@dimen/dimen8dp"
android:src="@drawable/ic_lock"
android:visibility="gone"
tools:visibility="visible" />
tools:visibility="visible"/>
<TextView
android:id="@+id/toolbar_title"
@ -41,7 +42,7 @@
android:layout_gravity="center_vertical"
android:gravity="center_vertical"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -49,7 +50,7 @@
android:id="@+id/loadingIndicator"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:indeterminate="true" />
android:indeterminate="true"/>
<com.google.android.material.tabs.TabLayout
android:id="@+id/tabs"
@ -68,6 +69,6 @@
android:id="@+id/repositoryContainer"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
@ -29,7 +30,7 @@
android:contentDescription="@string/close"
android:focusable="true"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbar_title"
@ -42,7 +43,7 @@
android:singleLine="true"
android:text="@string/commitTitle"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -76,7 +77,7 @@
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/dimen56dp"
android:indeterminate="true"
app:indicatorColor="?attr/progressIndicatorColor" />
app:indicatorColor="?attr/progressIndicatorColor"/>
<com.google.android.material.progressindicator.LinearProgressIndicator
android:id="@+id/progressLoadMore"
@ -86,7 +87,7 @@
android:layout_marginTop="@dimen/dimen56dp"
android:indeterminate="true"
android:visibility="gone"
app:indicatorColor="?attr/progressIndicatorColor" />
app:indicatorColor="?attr/progressIndicatorColor"/>
<TextView
android:id="@+id/noData"
@ -97,6 +98,6 @@
android:text="@string/noDataFound"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp"
android:visibility="gone" />
android:visibility="gone"/>
</RelativeLayout>

View file

@ -1,8 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="?attr/primaryBackgroundColor"
android:orientation="vertical">
@ -10,8 +11,8 @@
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/Widget.AppCompat.SearchView"
app:elevation="@dimen/dimen0dp">
app:elevation="@dimen/dimen0dp"
android:theme="@style/Widget.AppCompat.SearchView">
<com.google.android.material.appbar.MaterialToolbar
android:id="@+id/toolbar"
@ -23,23 +24,23 @@
android:id="@+id/close"
android:layout_width="@dimen/dimen26dp"
android:layout_height="@dimen/dimen26dp"
android:layout_marginStart="@dimen/dimen16dp"
android:layout_marginEnd="@dimen/dimen16dp"
android:background="?android:attr/selectableItemBackgroundBorderless"
android:clickable="true"
android:contentDescription="@string/close"
android:focusable="true"
android:layout_marginStart="@dimen/dimen16dp"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:contentDescription="@string/close"
android:background="?android:attr/selectableItemBackgroundBorderless"
android:focusable="true"
android:clickable="true"
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbar_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:maxLines="1"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:maxLines="1"
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -49,19 +50,19 @@
android:id="@+id/gridView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="?attr/primaryBackgroundColor"
android:gravity="center"
android:scrollbars="none"
android:numColumns="2"
android:padding="@dimen/dimen4dp"
android:scrollbars="none" />
android:gravity="center"
android:background="?attr/primaryBackgroundColor"
android:padding="@dimen/dimen4dp"/>
<com.google.android.material.progressindicator.LinearProgressIndicator
android:id="@+id/progress_bar"
style="@style/Widget.MaterialComponents.LinearProgressIndicator"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:indeterminate="true"
app:indicatorColor="?attr/progressIndicatorColor" />
style="@style/Widget.MaterialComponents.LinearProgressIndicator"
app:indicatorColor="?attr/progressIndicatorColor"/>
<TextView
android:id="@+id/noDataStargazers"
@ -71,6 +72,6 @@
android:text="@string/noDataFound"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp"
android:visibility="gone" />
android:visibility="gone"/>
</LinearLayout>

View file

@ -1,8 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="?attr/primaryBackgroundColor"
android:orientation="vertical">
@ -10,8 +11,8 @@
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/Widget.AppCompat.SearchView"
app:elevation="@dimen/dimen0dp">
app:elevation="@dimen/dimen0dp"
android:theme="@style/Widget.AppCompat.SearchView">
<com.google.android.material.appbar.MaterialToolbar
android:id="@+id/toolbar"
@ -23,23 +24,23 @@
android:id="@+id/close"
android:layout_width="@dimen/dimen26dp"
android:layout_height="@dimen/dimen26dp"
android:layout_marginStart="@dimen/dimen16dp"
android:layout_marginEnd="@dimen/dimen16dp"
android:background="?android:attr/selectableItemBackgroundBorderless"
android:clickable="true"
android:contentDescription="@string/close"
android:focusable="true"
android:layout_marginStart="@dimen/dimen16dp"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:contentDescription="@string/close"
android:background="?android:attr/selectableItemBackgroundBorderless"
android:focusable="true"
android:clickable="true"
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbar_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:maxLines="1"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:maxLines="1"
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -50,18 +51,18 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="?attr/primaryBackgroundColor"
android:gravity="center"
android:numColumns="2"
android:padding="@dimen/dimen4dp"
android:scrollbars="none" />
android:scrollbars="none"
android:numColumns="2"
android:gravity="center"/>
<com.google.android.material.progressindicator.LinearProgressIndicator
android:id="@+id/progress_bar"
style="@style/Widget.MaterialComponents.LinearProgressIndicator"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:indeterminate="true"
app:indicatorColor="?attr/progressIndicatorColor" />
style="@style/Widget.MaterialComponents.LinearProgressIndicator"
app:indicatorColor="?attr/progressIndicatorColor"/>
<TextView
android:id="@+id/noDataWatchers"
@ -71,6 +72,6 @@
android:text="@string/noDataFound"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp"
android:visibility="gone" />
android:visibility="gone"/>
</LinearLayout>

View file

@ -32,7 +32,7 @@
android:contentDescription="@string/close"
android:focusable="true"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbarTitle"
@ -42,14 +42,13 @@
android:maxLines="1"
android:text="@string/repoSettingsTitle"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
</com.google.android.material.appbar.AppBarLayout>
<ScrollView
android:layout_width="match_parent"
<ScrollView android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?attr/primaryBackgroundColor">
@ -71,12 +70,12 @@
android:text="@string/repoSettingsEditProperties"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen16sp"
app:drawableStartCompat="@drawable/ic_edit" />
app:drawableStartCompat="@drawable/ic_edit"/>
<View
android:layout_width="match_parent"
android:layout_height="@dimen/dimen1dp"
android:background="?attr/dividerColor" />
android:background="?attr/dividerColor"/>
<LinearLayout
android:id="@+id/transferOwnerFrame"
@ -100,7 +99,7 @@
android:text="@string/repoSettingsTransferOwnership"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen16sp"
app:drawableStartCompat="@drawable/ic_arrow_up" />
app:drawableStartCompat="@drawable/ic_arrow_up"/>
<TextView
android:id="@+id/transferRepositoryOwnershipHint"
@ -112,12 +111,12 @@
android:paddingBottom="@dimen/dimen16dp"
android:text="@string/repoSettingsTransferOwnershipHint"
android:textColor="?attr/hintColor"
android:textSize="@dimen/dimen12sp" />
android:textSize="@dimen/dimen12sp"/>
<View
android:layout_width="match_parent"
android:layout_height="@dimen/dimen1dp"
android:background="?attr/dividerColor" />
android:background="?attr/dividerColor"/>
</LinearLayout>
@ -143,7 +142,7 @@
android:text="@string/repoSettingsDelete"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen16sp"
app:drawableStartCompat="@drawable/ic_delete" />
app:drawableStartCompat="@drawable/ic_delete"/>
<TextView
android:id="@+id/deleteRepositoryHint"
@ -154,7 +153,7 @@
android:paddingEnd="@dimen/dimen16dp"
android:text="@string/repoSettingsDeleteHint"
android:textColor="?attr/hintColor"
android:textSize="@dimen/dimen12sp" />
android:textSize="@dimen/dimen12sp"/>
</LinearLayout>

View file

@ -32,7 +32,7 @@
android:contentDescription="@string/close"
android:focusable="true"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbar_title"
@ -42,7 +42,7 @@
android:maxLines="1"
android:text="@string/settingsAppearanceHeader"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -67,7 +67,7 @@
android:layout_marginEnd="@dimen/dimen24dp"
android:text="@string/themeSelectionHeaderText"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen18sp" />
android:textSize="@dimen/dimen18sp"/>
<TextView
android:id="@+id/themeSelected"
@ -77,7 +77,7 @@
android:layout_marginEnd="@dimen/dimen24dp"
android:text="@string/themeSelectionSelectedText"
android:textColor="?attr/selectedTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</LinearLayout>
@ -100,7 +100,7 @@
android:layout_marginEnd="@dimen/dimen24dp"
android:text="@string/settingsLightThemeTimeSelectorHeader"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen18sp" />
android:textSize="@dimen/dimen18sp"/>
<TextView
android:id="@+id/lightThemeSelectedTime"
@ -110,7 +110,7 @@
android:layout_marginEnd="@dimen/dimen24dp"
android:text="@string/settingsThemeTimeSelectedHint"
android:textColor="?attr/selectedTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</LinearLayout>
@ -133,7 +133,7 @@
android:layout_marginEnd="@dimen/dimen24dp"
android:text="@string/settingsDarkThemeTimeSelectorHeader"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen18sp" />
android:textSize="@dimen/dimen18sp"/>
<TextView
android:id="@+id/darkThemeSelectedTime"
@ -143,7 +143,7 @@
android:layout_marginEnd="@dimen/dimen24dp"
android:text="@string/settingsThemeTimeSelectedHint"
android:textColor="?attr/selectedTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</LinearLayout>
@ -166,7 +166,7 @@
android:layout_marginEnd="@dimen/dimen24dp"
android:text="@string/settingsCustomFontHeaderText"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen18sp" />
android:textSize="@dimen/dimen18sp"/>
<TextView
android:id="@+id/customFontSelected"
@ -176,7 +176,7 @@
android:layout_marginEnd="@dimen/dimen24dp"
android:text="@string/settingsCustomFontDefault"
android:textColor="?attr/selectedTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</LinearLayout>
@ -199,7 +199,7 @@
android:layout_marginEnd="@dimen/dimen24dp"
android:text="@string/settingsDateTimeHeaderText"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen18sp" />
android:textSize="@dimen/dimen18sp"/>
<TextView
android:id="@+id/tvDateTimeSelected"
@ -209,7 +209,7 @@
android:layout_marginEnd="@dimen/dimen24dp"
android:text="@string/settingsDateTimeHeaderDefault"
android:textColor="?attr/selectedTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</LinearLayout>
@ -230,7 +230,7 @@
android:layout_marginEnd="@dimen/dimen48dp"
android:text="@string/settingsCounterBadges"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen18sp" />
android:textSize="@dimen/dimen18sp"/>
<com.google.android.material.switchmaterial.SwitchMaterial
android:id="@+id/switchCounterBadge"
@ -242,7 +242,7 @@
android:gravity="end"
android:paddingStart="@dimen/dimen0dp"
android:paddingEnd="@dimen/dimen24dp"
android:switchMinWidth="@dimen/dimen56dp" />
android:switchMinWidth="@dimen/dimen56dp"/>
</RelativeLayout>
@ -259,15 +259,15 @@
android:id="@+id/label_title_frame"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="100">
android:weightSum="100"
android:orientation="horizontal">
<TextView
android:id="@+id/tvLabelsInListHeader"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/dimen24dp"
android:layout_weight="90"
android:layout_marginStart="@dimen/dimen24dp"
android:text="@string/settingsLabelsInListHeader"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen18sp" />

View file

@ -32,7 +32,7 @@
android:contentDescription="@string/close"
android:focusable="true"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbarTitle"
@ -42,7 +42,7 @@
android:maxLines="1"
android:text="@string/draftsHeader"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -61,17 +61,17 @@
android:id="@+id/enableCommentsDeletionHeader"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="100">
android:weightSum="100"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/dimen24dp"
android:layout_weight="90"
android:layout_marginStart="@dimen/dimen24dp"
android:text="@string/settingsEnableCommentsDeletionText"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen18sp" />
android:textSize="@dimen/dimen18sp"/>
<LinearLayout
android:layout_width="wrap_content"
@ -86,7 +86,7 @@
android:layout_height="@dimen/dimen32dp"
android:paddingStart="@dimen/dimen24dp"
android:paddingEnd="@dimen/dimen24dp"
android:switchMinWidth="@dimen/dimen56dp" />
android:switchMinWidth="@dimen/dimen56dp"/>
</LinearLayout>
@ -100,7 +100,7 @@
android:layout_marginEnd="@dimen/dimen72dp"
android:text="@string/settingsEnableCommentsDeletionHintText"
android:textColor="?attr/hintColor"
android:textSize="@dimen/dimen12sp" />
android:textSize="@dimen/dimen12sp"/>
</RelativeLayout>

View file

@ -32,7 +32,7 @@
android:contentDescription="@string/close"
android:focusable="true"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbarTitle"
@ -42,7 +42,7 @@
android:maxLines="1"
android:text="@string/settingsGeneralHeader"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -67,7 +67,7 @@
android:layout_marginEnd="@dimen/dimen24dp"
android:text="@string/generalDeepLinkDefaultScreen"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen18sp" />
android:textSize="@dimen/dimen18sp"/>
<TextView
android:layout_width="wrap_content"
@ -76,7 +76,7 @@
android:layout_marginEnd="@dimen/dimen24dp"
android:text="@string/generalDeepLinkDefaultScreenHintText"
android:textColor="?attr/hintColor"
android:textSize="@dimen/dimen12sp" />
android:textSize="@dimen/dimen12sp"/>
<TextView
android:id="@+id/generalDeepLinkSelected"
@ -86,7 +86,7 @@
android:layout_marginEnd="@dimen/dimen24dp"
android:text="@string/generalDeepLinkSelectedText"
android:textColor="?attr/selectedTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</LinearLayout>
@ -109,7 +109,7 @@
android:layout_marginEnd="@dimen/dimen24dp"
android:text="@string/settingsHomeScreenHeaderText"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen18sp" />
android:textSize="@dimen/dimen18sp"/>
<TextView
android:id="@+id/homeScreenSelected"
@ -119,7 +119,7 @@
android:layout_marginEnd="@dimen/dimen24dp"
android:text="@string/settingsHomeScreenSelectedText"
android:textColor="?attr/selectedTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</LinearLayout>
@ -140,7 +140,7 @@
android:layout_marginEnd="@dimen/dimen72dp"
android:text="@string/useCustomTabs"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen18sp" />
android:textSize="@dimen/dimen18sp"/>
<com.google.android.material.switchmaterial.SwitchMaterial
android:id="@+id/switchTabs"
@ -152,7 +152,7 @@
android:gravity="end"
android:paddingStart="@dimen/dimen0dp"
android:paddingEnd="@dimen/dimen24dp"
android:switchMinWidth="@dimen/dimen56dp" />
android:switchMinWidth="@dimen/dimen56dp"/>
</RelativeLayout>

View file

@ -34,7 +34,7 @@
android:contentDescription="@string/close"
android:focusable="true"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbar_title"
@ -44,7 +44,7 @@
android:maxLines="1"
android:text="@string/pageTitleNotifications"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</androidx.appcompat.widget.Toolbar>
@ -57,18 +57,18 @@
android:layout_marginBottom="@dimen/dimen6dp"
android:background="?android:attr/selectableItemBackground"
android:orientation="horizontal"
android:padding="@dimen/dimen16dp"
android:weightSum="100">
android:weightSum="100"
android:padding="@dimen/dimen16dp">
<TextView
android:id="@+id/enableNotificationsHeader"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/dimen24dp"
android:layout_weight="90"
android:layout_marginStart="@dimen/dimen24dp"
android:text="@string/enableNotificationsHeaderText"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen18sp" />
android:textSize="@dimen/dimen18sp"/>
<LinearLayout
android:layout_width="wrap_content"
@ -83,7 +83,7 @@
android:layout_height="@dimen/dimen32dp"
android:paddingStart="@dimen/dimen24dp"
android:paddingEnd="@dimen/dimen24dp"
android:switchMinWidth="@dimen/dimen56dp" />
android:switchMinWidth="@dimen/dimen56dp"/>
</LinearLayout>
@ -106,7 +106,7 @@
android:layout_marginEnd="@dimen/dimen24dp"
android:text="@string/notificationsPollingHeaderText"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen18sp" />
android:textSize="@dimen/dimen18sp"/>
<TextView
android:id="@+id/pollingDelaySelected"
@ -116,7 +116,7 @@
android:layout_marginEnd="@dimen/dimen24dp"
android:text="@string/pollingDelaySelectedText"
android:textColor="?attr/selectedTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</LinearLayout>
@ -137,7 +137,7 @@
android:layout_marginEnd="@dimen/dimen24dp"
android:text="@string/enableLightsHeaderText"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen18sp" />
android:textSize="@dimen/dimen18sp"/>
<com.google.android.material.switchmaterial.SwitchMaterial
android:id="@+id/enableLightsMode"
@ -149,7 +149,7 @@
android:gravity="end"
android:paddingStart="@dimen/dimen0dp"
android:paddingEnd="@dimen/dimen24dp"
android:switchMinWidth="@dimen/dimen56dp" />
android:switchMinWidth="@dimen/dimen56dp"/>
</RelativeLayout>
@ -170,7 +170,7 @@
android:layout_marginEnd="@dimen/dimen24dp"
android:text="@string/chooseColorSelectorHeader"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen18sp" />
android:textSize="@dimen/dimen18sp"/>
<com.google.android.material.card.MaterialCardView
android:id="@+id/chooseColorState"
@ -182,7 +182,7 @@
android:layout_marginEnd="@dimen/dimen28dp"
android:gravity="end"
app:cardCornerRadius="@dimen/dimen16dp"
app:cardElevation="@dimen/dimen0dp" />
app:cardElevation="@dimen/dimen0dp"/>
</RelativeLayout>
@ -203,7 +203,7 @@
android:layout_marginEnd="@dimen/dimen72dp"
android:text="@string/enableVibrationHeaderText"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen18sp" />
android:textSize="@dimen/dimen18sp"/>
<com.google.android.material.switchmaterial.SwitchMaterial
android:id="@+id/enableVibrationMode"
@ -215,7 +215,7 @@
android:gravity="end"
android:paddingStart="@dimen/dimen0dp"
android:paddingEnd="@dimen/dimen24dp"
android:switchMinWidth="@dimen/dimen56dp" />
android:switchMinWidth="@dimen/dimen56dp"/>
</RelativeLayout>

View file

@ -31,7 +31,7 @@
android:contentDescription="@string/close"
android:focusable="true"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbar_title"
@ -41,7 +41,7 @@
android:maxLines="1"
android:text="@string/reportViewerHeader"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -54,18 +54,18 @@
android:layout_marginBottom="@dimen/dimen6dp"
android:background="?android:attr/selectableItemBackground"
android:orientation="horizontal"
android:padding="@dimen/dimen16dp"
android:weightSum="100">
android:weightSum="100"
android:padding="@dimen/dimen16dp">
<TextView
android:id="@+id/enableReportsHeader"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/dimen24dp"
android:layout_weight="90"
android:layout_marginStart="@dimen/dimen24dp"
android:text="@string/settingsEnableReportsText"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen18sp" />
android:textSize="@dimen/dimen18sp"/>
<LinearLayout
android:layout_width="wrap_content"
@ -80,7 +80,7 @@
android:layout_height="@dimen/dimen32dp"
android:paddingStart="@dimen/dimen24dp"
android:paddingEnd="@dimen/dimen24dp"
android:switchMinWidth="@dimen/dimen56dp" />
android:switchMinWidth="@dimen/dimen56dp"/>
</LinearLayout>

View file

@ -31,7 +31,7 @@
android:contentDescription="@string/close"
android:focusable="true"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbar_title"
@ -41,7 +41,7 @@
android:maxLines="1"
android:text="@string/settingsSecurityHeader"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -64,7 +64,7 @@
android:layout_marginEnd="@dimen/dimen72dp"
android:text="@string/settingsBiometricHeader"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen18sp" />
android:textSize="@dimen/dimen18sp"/>
<com.google.android.material.switchmaterial.SwitchMaterial
android:id="@+id/switchBiometric"
@ -76,7 +76,7 @@
android:gravity="end"
android:paddingStart="@dimen/dimen0dp"
android:paddingEnd="@dimen/dimen24dp"
android:switchMinWidth="@dimen/dimen56dp" />
android:switchMinWidth="@dimen/dimen56dp"/>
</RelativeLayout>
@ -97,7 +97,7 @@
android:layout_marginEnd="@dimen/dimen24dp"
android:text="@string/settingsCertsSelectorHeader"
android:textColor="?attr/primaryTextColor"
android:textSize="18sp" />
android:textSize="18sp"/>
</LinearLayout>
@ -118,7 +118,7 @@
android:layout_marginEnd="@dimen/dimen24dp"
android:text="@string/cacheSizeDataSelectionHeaderText"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen18sp" />
android:textSize="@dimen/dimen18sp"/>
<TextView
android:id="@+id/cacheSizeDataSelected"
@ -128,7 +128,7 @@
android:layout_marginEnd="@dimen/dimen24dp"
android:text="@string/cacheSizeDataSelectionSelectedText"
android:textColor="?attr/selectedTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</LinearLayout>
@ -149,7 +149,7 @@
android:layout_marginEnd="@dimen/dimen24dp"
android:text="@string/cacheSizeImagesSelectionHeaderText"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen18sp" />
android:textSize="@dimen/dimen18sp"/>
<TextView
android:id="@+id/cacheSizeImagesSelected"
@ -159,7 +159,7 @@
android:layout_marginEnd="@dimen/dimen24dp"
android:text="@string/cacheSizeImagesSelectionSelectedText"
android:textColor="?attr/selectedTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</LinearLayout>
@ -180,7 +180,7 @@
android:layout_marginEnd="@dimen/dimen24dp"
android:text="@string/clearCacheSelectionHeaderText"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen18sp" />
android:textSize="@dimen/dimen18sp"/>
<TextView
android:id="@+id/clearCacheSelected"
@ -190,7 +190,7 @@
android:layout_marginEnd="@dimen/dimen24dp"
android:text="@string/clearCacheSelectionSelectedText"
android:textColor="?attr/selectedTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</LinearLayout>

View file

@ -31,7 +31,7 @@
android:contentDescription="@string/close"
android:focusable="true"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbar_title"
@ -41,7 +41,7 @@
android:maxLines="1"
android:text="@string/settingsLanguageHeaderText"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -65,7 +65,7 @@
android:layout_marginEnd="@dimen/dimen24dp"
android:text="@string/settingsLanguageSelectorHeader"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen18sp" />
android:textSize="@dimen/dimen18sp"/>
<TextView
android:id="@+id/tvLanguageSelected"
@ -75,7 +75,7 @@
android:layout_marginEnd="@dimen/dimen24dp"
android:text="@string/settingsLanguageSelectedHeaderDefault"
android:textColor="?attr/selectedTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</LinearLayout>
@ -91,6 +91,6 @@
android:paddingBottom="@dimen/dimen16dp"
android:text="@string/settingsHelpTranslateText"
android:textColor="@color/lightBlue"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</LinearLayout>

View file

@ -31,7 +31,7 @@
android:contentDescription="@string/close"
android:focusable="true"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbar_title"
@ -44,7 +44,7 @@
android:singleLine="true"
android:text="@string/defaultFilename"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen18sp" />
android:textSize="@dimen/dimen18sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -56,7 +56,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:indeterminate="true"
app:indicatorColor="?attr/progressIndicatorColor" />
app:indicatorColor="?attr/progressIndicatorColor"/>
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
@ -93,7 +93,7 @@
android:layout_height="wrap_content"
android:textColor="?attr/primaryTextColor"
android:textIsSelectable="true"
android:textSize="@dimen/dimen14sp" />
android:textSize="@dimen/dimen14sp"/>
</LinearLayout>
@ -102,7 +102,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="gone"
tools:visibility="visible" />
tools:visibility="visible"/>
</LinearLayout>
@ -140,7 +140,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -165,7 +165,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="@dimen/dimen14sp" />
android:textSize="@dimen/dimen14sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -177,7 +177,7 @@
android:layout_marginBottom="@dimen/dimen8dp"
android:textColor="?attr/primaryTextColor"
android:textIsSelectable="true"
android:textSize="@dimen/dimen14sp" />
android:textSize="@dimen/dimen14sp"/>
</LinearLayout>

View file

@ -1,16 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
<LinearLayout android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android">
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/Widget.AppCompat.SearchView"
app:elevation="@dimen/dimen0dp">
app:elevation="@dimen/dimen0dp"
android:theme="@style/Widget.AppCompat.SearchView">
<com.google.android.material.appbar.MaterialToolbar
android:id="@+id/toolbar"
@ -22,24 +22,24 @@
android:id="@+id/close"
android:layout_width="@dimen/dimen26dp"
android:layout_height="@dimen/dimen26dp"
android:layout_marginStart="@dimen/dimen16dp"
android:layout_marginEnd="@dimen/dimen16dp"
android:background="?android:attr/selectableItemBackgroundBorderless"
android:clickable="true"
android:contentDescription="@string/close"
android:focusable="true"
android:layout_marginStart="@dimen/dimen16dp"
android:gravity="center_vertical"
android:src="@drawable/ic_close" />
android:contentDescription="@string/close"
android:background="?android:attr/selectableItemBackgroundBorderless"
android:focusable="true"
android:clickable="true"
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbarTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:maxLines="1"
android:text="@string/addButton"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp" />
android:maxLines="1"
android:textSize="@dimen/dimen20sp"/>
</com.google.android.material.appbar.MaterialToolbar>
@ -47,12 +47,12 @@
<com.google.android.material.progressindicator.LinearProgressIndicator
android:id="@+id/progressBar"
style="@style/Widget.MaterialComponents.LinearProgressIndicator"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:indeterminate="true"
android:visibility="gone"
app:indicatorColor="?attr/progressIndicatorColor" />
android:indeterminate="true"
style="@style/Widget.MaterialComponents.LinearProgressIndicator"
app:indicatorColor="?attr/progressIndicatorColor"/>
<TextView
android:id="@+id/noData"
@ -63,7 +63,7 @@
android:text="@string/noDataFound"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp"
android:visibility="gone" />
android:visibility="gone"/>
<FrameLayout
android:layout_width="match_parent"
@ -75,12 +75,12 @@
android:id="@+id/recyclerViewTeamRepos"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginStart="@dimen/dimen0dp"
android:layout_marginTop="@dimen/dimen6dp"
android:layout_marginEnd="@dimen/dimen0dp"
android:layout_marginBottom="@dimen/dimen0dp"
android:background="?attr/primaryBackgroundColor"
android:scrollbars="vertical" />
android:layout_marginStart="@dimen/dimen0dp"
android:layout_marginEnd="@dimen/dimen0dp"
android:layout_marginTop="@dimen/dimen6dp"
android:layout_marginBottom="@dimen/dimen0dp"
android:scrollbars="vertical"/>
</FrameLayout>

View file

@ -12,7 +12,7 @@
android:text="@string/pageTitleIssues"
android:textColor="@color/lightGray"
android:textSize="@dimen/dimen16sp"
app:textAllCaps="true" />
app:textAllCaps="true"/>
<TextView
android:id="@+id/counterBadgeIssue"
@ -25,6 +25,6 @@
android:gravity="center"
android:text="@string/infoTabRepoZero"
android:textColor="@color/colorWhite"
android:textSize="@dimen/dimen12sp" />
android:textSize="@dimen/dimen12sp"/>
</RelativeLayout>

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_vertical">
@ -15,6 +16,6 @@
android:paddingEnd="@dimen/dimen4dp"
android:singleLine="true"
android:textColor="@color/colorWhite"
android:textSize="@dimen/dimen12sp" />
android:textSize="@dimen/dimen12sp"/>
</LinearLayout>

View file

@ -14,7 +14,7 @@
android:text="@string/tabPullRequests"
android:textColor="@color/lightGray"
android:textSize="@dimen/dimen16sp"
app:textAllCaps="true" />
app:textAllCaps="true"/>
<TextView
android:id="@+id/counterBadgePull"
@ -24,6 +24,6 @@
android:background="@drawable/shape_badge_background"
android:text="@string/infoTabRepoZero"
android:textColor="@color/colorWhite"
android:textSize="@dimen/dimen12sp" />
android:textSize="@dimen/dimen12sp"/>
</LinearLayout>

View file

@ -14,7 +14,7 @@
android:text="@string/tabTextReleases"
android:textColor="@color/lightGray"
android:textSize="@dimen/dimen16sp"
app:textAllCaps="true" />
app:textAllCaps="true"/>
<TextView
android:id="@+id/counterBadgeRelease"
@ -24,6 +24,6 @@
android:background="@drawable/shape_badge_background"
android:text="@string/infoTabRepoZero"
android:textColor="@color/colorWhite"
android:textSize="@dimen/dimen12sp" />
android:textSize="@dimen/dimen12sp"/>
</LinearLayout>

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -31,7 +32,7 @@
android:gravity="center"
android:text="@string/navAdministration"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</LinearLayout>
@ -56,7 +57,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_person_add"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
</com.google.android.flexbox.FlexboxLayout>

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -31,7 +32,7 @@
android:gravity="center"
android:text="@string/draftsHeader"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</LinearLayout>
@ -56,7 +57,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_delete"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
</com.google.android.flexbox.FlexboxLayout>

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -22,7 +23,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:orientation="horizontal" />
android:orientation="horizontal"/>
<View
android:id="@+id/reactionDivider"
@ -30,7 +31,7 @@
android:layout_height="4dp"
android:layout_marginTop="12dp"
android:layout_marginBottom="16dp"
android:background="?attr/dividerColor" />
android:background="?attr/dividerColor"/>
<LinearLayout
android:id="@+id/issueComments"
@ -46,7 +47,7 @@
android:gravity="center"
android:text="@string/commentButtonText"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</LinearLayout>
@ -71,7 +72,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_edit"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/commentMenuDelete"
@ -84,7 +85,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_delete"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/commentMenuQuote"
@ -97,7 +98,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_comment"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/commentMenuCopy"
@ -110,7 +111,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_copy"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
</com.google.android.flexbox.FlexboxLayout>
@ -119,7 +120,7 @@
android:layout_width="match_parent"
android:layout_height="4dp"
android:layout_marginBottom="16dp"
android:background="?attr/dividerColor" />
android:background="?attr/dividerColor"/>
<com.google.android.flexbox.FlexboxLayout
android:id="@+id/issueOtherSection"
@ -142,7 +143,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_link"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/issueCommentShare"
@ -155,7 +156,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_share"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/open"
@ -168,7 +169,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_browser"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
</com.google.android.flexbox.FlexboxLayout>

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -31,7 +32,7 @@
android:gravity="center"
android:text="@string/strFilter"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</LinearLayout>
@ -56,7 +57,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_milestone"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/openIssues"
@ -69,7 +70,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_issue"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/closedIssues"
@ -82,7 +83,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_issue_closed"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
</com.google.android.flexbox.FlexboxLayout>

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -31,7 +32,7 @@
android:gravity="center"
android:text="@string/labelName"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</LinearLayout>
@ -56,7 +57,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_edit"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/labelMenuDelete"
@ -69,7 +70,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_delete"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
</com.google.android.flexbox.FlexboxLayout>

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -31,7 +32,7 @@
android:gravity="center"
android:text="@string/strFilter"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</LinearLayout>
@ -56,7 +57,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_milestone"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/closedMilestone"
@ -69,7 +70,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_done"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
</com.google.android.flexbox.FlexboxLayout>

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -31,7 +32,7 @@
android:gravity="center"
android:text="@string/newIssueMilestoneTitle"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</LinearLayout>
@ -56,7 +57,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_close"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/openMilestone"
@ -69,7 +70,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_check"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
</com.google.android.flexbox.FlexboxLayout>

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -31,7 +32,7 @@
android:gravity="center"
android:text="@string/strFilter"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</LinearLayout>
@ -56,7 +57,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_issue"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/closedMyIssues"
@ -69,7 +70,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_issue_closed"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/assignedToMe"
@ -82,7 +83,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_person"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
</com.google.android.flexbox.FlexboxLayout>

View file

@ -31,7 +31,7 @@
android:gravity="center"
android:text="@string/pageTitleNotifications"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</LinearLayout>
@ -56,7 +56,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_pin"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/markRead"
@ -69,7 +69,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_unwatch"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/markUnread"
@ -82,7 +82,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_watchers"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
</com.google.android.flexbox.FlexboxLayout>

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -31,7 +32,7 @@
android:gravity="center"
android:text="@string/strFilter"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</LinearLayout>
@ -56,7 +57,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_watchers"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/readNotifications"
@ -69,7 +70,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_unwatch"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
</com.google.android.flexbox.FlexboxLayout>

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -31,7 +32,7 @@
android:gravity="center"
android:text="@string/newCreateButtonCopy"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</LinearLayout>
@ -56,7 +57,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_repo"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/createTeam"
@ -69,7 +70,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_people"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/createLabel"
@ -82,7 +83,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_tag"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
</com.google.android.flexbox.FlexboxLayout>
@ -91,7 +92,7 @@
android:layout_width="match_parent"
android:layout_height="4dp"
android:layout_marginBottom="16dp"
android:background="?attr/dividerColor" />
android:background="?attr/dividerColor"/>
<LinearLayout
android:id="@+id/organizationShareHeadFrame"
@ -107,7 +108,7 @@
android:gravity="center"
android:text="@string/organization"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</LinearLayout>
@ -131,7 +132,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_copy"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/share"
@ -144,7 +145,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_share"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/open"
@ -157,7 +158,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_browser"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
</com.google.android.flexbox.FlexboxLayout>

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -31,7 +32,7 @@
android:gravity="center"
android:text="@string/team"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</LinearLayout>
@ -56,7 +57,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_repo"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/addNewMember"
@ -69,7 +70,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_person_add"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
</com.google.android.flexbox.FlexboxLayout>

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -31,7 +32,7 @@
android:gravity="center"
android:text="@string/navProfile"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</LinearLayout>
@ -56,7 +57,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_email"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
</com.google.android.flexbox.FlexboxLayout>

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -31,7 +32,7 @@
android:gravity="center"
android:text="@string/strFilter"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</LinearLayout>
@ -56,7 +57,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_pull_request"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/closedPr"
@ -69,7 +70,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_issue_closed"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
</com.google.android.flexbox.FlexboxLayout>

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -31,7 +32,7 @@
android:gravity="center"
android:text="@string/release"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</LinearLayout>
@ -56,7 +57,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_delete"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
</com.google.android.flexbox.FlexboxLayout>

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -31,7 +32,7 @@
android:gravity="center"
android:text="@string/strFilter"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</LinearLayout>
@ -56,7 +57,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_release"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/tags"
@ -69,7 +70,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_tag"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
</com.google.android.flexbox.FlexboxLayout>

View file

@ -35,7 +35,7 @@
android:clickable="true"
android:contentDescription="@string/close"
android:focusable="true"
android:src="@drawable/ic_close" />
android:src="@drawable/ic_close"/>
<TextView
android:id="@+id/toolbar_title"
@ -46,7 +46,7 @@
android:maxLines="2"
android:text="@string/commentButtonText"
android:textColor="?attr/primaryTextColor"
android:textSize="14sp" />
android:textSize="14sp"/>
<ImageButton
android:id="@+id/drafts"
@ -58,7 +58,7 @@
android:clickable="true"
android:contentDescription="@string/close"
android:focusable="true"
android:src="@drawable/ic_drafts" />
android:src="@drawable/ic_drafts"/>
<ImageButton
android:id="@+id/send"
@ -72,7 +72,7 @@
android:contentDescription="@string/close"
android:enabled="false"
android:focusable="true"
android:src="@drawable/ic_send" />
android:src="@drawable/ic_send"/>
</LinearLayout>
@ -100,7 +100,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/primaryTextColor"
android:textColorHint="?attr/primaryBackgroundColor"
android:textSize="16sp" />
android:textSize="16sp"/>
<TextView
android:id="@+id/drafts_hint"
@ -111,7 +111,7 @@
android:textColor="?attr/hintColor"
android:textSize="12sp"
android:visibility="gone"
tools:visibility="visible" />
tools:visibility="visible"/>
</LinearLayout>

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -31,7 +32,7 @@
android:gravity="center"
android:text="@string/newCreateButtonCopy"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</LinearLayout>
@ -56,7 +57,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_file"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/createNewIssue"
@ -69,7 +70,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_issue"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/createLabel"
@ -82,7 +83,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_tag"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/createNewMilestone"
@ -95,7 +96,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_milestone"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/createRelease"
@ -108,7 +109,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_release"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/createPullRequest"
@ -121,7 +122,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_pull_request"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/addCollaborator"
@ -134,7 +135,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_person_add"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/create_wiki"
@ -147,7 +148,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_wiki"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
</com.google.android.flexbox.FlexboxLayout>
@ -156,7 +157,7 @@
android:layout_width="match_parent"
android:layout_height="4dp"
android:layout_marginBottom="16dp"
android:background="?attr/dividerColor" />
android:background="?attr/dividerColor"/>
<LinearLayout
android:id="@+id/repoOthersHeadFrame"
@ -172,7 +173,7 @@
android:gravity="center"
android:text="@string/repository"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</LinearLayout>
@ -197,7 +198,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_star"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/unStarRepository"
@ -210,7 +211,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_star_unfilled"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/watchRepository"
@ -223,7 +224,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_watchers"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/unWatchRepository"
@ -236,7 +237,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_unwatch"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/copyRepoUrl"
@ -249,7 +250,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_copy"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/shareRepository"
@ -262,7 +263,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_share"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/openWebRepo"
@ -275,7 +276,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_browser"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/repoSettings"
@ -288,7 +289,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_settings"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
</com.google.android.flexbox.FlexboxLayout>

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -31,7 +32,7 @@
android:gravity="center"
android:text="@string/tags"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</LinearLayout>
@ -56,7 +57,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_delete"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
</com.google.android.flexbox.FlexboxLayout>

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -31,7 +32,7 @@
android:gravity="center"
android:text="@string/pageTitleUsers"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</LinearLayout>
@ -56,7 +57,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_person_add"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/unfollowUser"
@ -70,7 +71,7 @@
android:textSize="16sp"
android:visibility="gone"
app:drawableTopCompat="@drawable/ic_person_remove"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
</com.google.android.flexbox.FlexboxLayout>

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -31,7 +32,7 @@
android:gravity="center"
android:text="@string/wiki"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</LinearLayout>
@ -56,7 +57,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_edit"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
<TextView
android:id="@+id/delete_wiki"
@ -69,7 +70,7 @@
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
app:drawableTopCompat="@drawable/ic_delete"
app:layout_alignSelf="flex_start" />
app:layout_alignSelf="flex_start"/>
</com.google.android.flexbox.FlexboxLayout>

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
@ -34,7 +35,7 @@
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:contentDescription="@string/appName"
android:src="@mipmap/app_logo" />
android:src="@mipmap/app_logo"/>
</com.google.android.material.card.MaterialCardView>
@ -52,7 +53,7 @@
android:text="@string/appName"
android:textColor="?attr/primaryTextColor"
android:textSize="24sp"
android:textStyle="bold" />
android:textStyle="bold"/>
<TextView
android:id="@+id/appVersionBuild"
@ -63,7 +64,7 @@
android:text="@string/appVersionBuild"
android:textColor="?attr/primaryTextColor"
android:textIsSelectable="true"
android:textSize="14sp" />
android:textSize="14sp"/>
</LinearLayout>
@ -84,7 +85,7 @@
android:text="@string/commitPage"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
android:textStyle="bold" />
android:textStyle="bold"/>
<TextView
android:id="@+id/userServerVersion"
@ -94,7 +95,7 @@
android:paddingEnd="28dp"
android:textColor="?attr/primaryTextColor"
android:textIsSelectable="true"
android:textSize="14sp" />
android:textSize="14sp"/>
<!-- user server version -->
<!-- support -->
@ -108,7 +109,7 @@
android:text="@string/supportText"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
android:textStyle="bold" />
android:textStyle="bold"/>
<TextView
android:id="@+id/donationLinkPatreon"
@ -120,7 +121,7 @@
android:text="@string/supportTextPatreon"
android:textColor="@color/lightBlue"
android:textColorLink="@color/lightBlue"
android:textSize="14sp" />
android:textSize="14sp"/>
<TextView
android:id="@+id/donationLinkBuyMeaCoffee"
@ -132,7 +133,7 @@
android:text="@string/supportTextBuyMeaCoffee"
android:textColor="@color/lightBlue"
android:textColorLink="@color/lightBlue"
android:textSize="14sp" />
android:textSize="14sp"/>
<!-- support -->
<!-- translate -->
@ -146,7 +147,7 @@
android:text="@string/translateText"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp"
android:textStyle="bold" />
android:textStyle="bold"/>
<TextView
android:id="@+id/translateLink"
@ -160,7 +161,7 @@
android:textColor="@color/lightBlue"
android:textColorLink="@color/lightBlue"
android:textSize="14sp"
android:visibility="visible" />
android:visibility="visible"/>
<!-- translate -->
</LinearLayout>
@ -174,7 +175,7 @@
android:text="@string/websiteText"
android:textColor="@color/btnTextColor"
android:textSize="16sp"
android:textStyle="bold" />
android:textStyle="bold"/>
</LinearLayout>

View file

@ -13,7 +13,7 @@
android:layout_height="@dimen/dimen36dp"
android:checked="false"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
<com.google.android.material.card.MaterialCardView
style="?attr/materialCardViewFilledStyle"
@ -29,7 +29,7 @@
android:id="@+id/assigneesAvatar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:contentDescription="@string/generalImgContentText" />
android:contentDescription="@string/generalImgContentText"/>
</com.google.android.material.card.MaterialCardView>
@ -41,7 +41,7 @@
android:paddingTop="@dimen/dimen8dp"
android:paddingEnd="@dimen/dimen4dp"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</RelativeLayout>

View file

@ -16,7 +16,7 @@
android:text="@string/newIssueSelectAssigneesListTitle"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp"
android:textStyle="bold" />
android:textStyle="bold"/>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/assigneesRecyclerView"
@ -24,6 +24,6 @@
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="@dimen/dimen12dp"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"/>
</LinearLayout>

View file

@ -22,7 +22,7 @@
android:text="@string/exploreFilterDialogTitle"
android:textColor="?attr/primaryTextColor"
android:textSize="20sp"
android:textStyle="bold" />
android:textStyle="bold"/>
</LinearLayout>
@ -42,7 +42,7 @@
android:checked="false"
android:text="@string/exploreFilterIncludeTopic"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
<CheckBox
android:id="@+id/includeDesc"
@ -51,7 +51,7 @@
android:checked="false"
android:text="@string/exploreFilterIncludeDesc"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
<CheckBox
android:id="@+id/includeTemplate"
@ -60,7 +60,7 @@
android:checked="false"
android:text="@string/exploreFilterIncludeTemplateRepos"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
<CheckBox
android:id="@+id/onlyArchived"
@ -69,7 +69,7 @@
android:checked="false"
android:text="@string/exploreFilterIncludeArchive"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</LinearLayout>

View file

@ -13,7 +13,7 @@
android:layout_height="@dimen/dimen36dp"
android:checked="false"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
<com.google.android.material.card.MaterialCardView
style="?attr/materialCardViewFilledStyle"
@ -29,7 +29,7 @@
android:id="@+id/labelColor"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:contentDescription="@string/generalImgContentText" />
android:contentDescription="@string/generalImgContentText"/>
</com.google.android.material.card.MaterialCardView>
@ -41,7 +41,7 @@
android:paddingTop="@dimen/dimen8dp"
android:paddingEnd="@dimen/dimen4dp"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen16sp" />
android:textSize="@dimen/dimen16sp"/>
</RelativeLayout>

View file

@ -16,7 +16,7 @@
android:text="@string/newIssueSelectLabelsListTitle"
android:textColor="?attr/primaryTextColor"
android:textSize="@dimen/dimen20sp"
android:textStyle="bold" />
android:textStyle="bold"/>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/labelsRecyclerView"
@ -24,6 +24,6 @@
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="@dimen/dimen12dp"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"/>
</LinearLayout>

View file

@ -3,4 +3,4 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="4dp"
android:layout_marginBottom="4dp" />
android:layout_marginBottom="4dp"/>

View file

@ -13,6 +13,6 @@
android:id="@+id/textCodeBlock"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:lineSpacingExtra="2dip" />
android:lineSpacingExtra="2dip"/>
</HorizontalScrollView>

View file

@ -14,6 +14,6 @@
android:id="@+id/table_layout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:stretchColumns="*" />
android:stretchColumns="*"/>
</HorizontalScrollView>

View file

@ -17,14 +17,14 @@
android:layout_marginBottom="4dp"
android:text="@string/pullFromBranch"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
<TextView
android:id="@+id/headBranch"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="?attr/primaryTextColor"
android:textSize="14sp" />
android:textSize="14sp"/>
</LinearLayout>
@ -41,14 +41,14 @@
android:layout_marginBottom="4dp"
android:text="@string/mergeIntoBranch"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
<TextView
android:id="@+id/baseBranch"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="?attr/primaryTextColor"
android:textSize="14sp" />
android:textSize="14sp"/>
</LinearLayout>

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
@ -12,7 +13,7 @@
android:padding="16dp"
android:text="@string/selectUpdateStrategy"
android:textColor="?attr/primaryTextColor"
android:textSize="20sp" />
android:textSize="20sp"/>
<com.google.android.material.button.MaterialButton
android:id="@+id/updatePullMerge"
@ -24,7 +25,7 @@
android:layout_marginBottom="@dimen/dimen8dp"
android:text="@string/updateStrategyMerge"
android:textColor="@color/colorWhite"
android:textStyle="bold" />
android:textStyle="bold"/>
<com.google.android.material.button.MaterialButton
android:id="@+id/updatePullRebase"
@ -36,6 +37,6 @@
android:layout_marginBottom="@dimen/dimen8dp"
android:text="@string/updateStrategyRebase"
android:textColor="@color/colorWhite"
android:textStyle="bold" />
android:textStyle="bold"/>
</LinearLayout>

View file

@ -12,6 +12,6 @@
android:layout_height="wrap_content"
android:indeterminate="true"
android:minWidth="360dp"
app:indicatorColor="?attr/progressIndicatorColor" />
app:indicatorColor="?attr/progressIndicatorColor"/>
</LinearLayout>

View file

@ -14,7 +14,7 @@
android:text="@string/repoSettingsDelete"
android:textColor="?attr/primaryTextColor"
android:textSize="20sp"
android:textStyle="bold" />
android:textStyle="bold"/>
<TextView
android:id="@+id/description"
@ -23,7 +23,7 @@
android:layout_marginBottom="16dp"
android:text="@string/repoSettingsDeleteDescription"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/repoNameForDeletionLayout"
@ -44,7 +44,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -55,7 +55,7 @@
android:layout_height="wrap_content"
android:indeterminate="true"
android:visibility="gone"
app:indicatorColor="?attr/progressIndicatorColor" />
app:indicatorColor="?attr/progressIndicatorColor"/>
<com.google.android.material.button.MaterialButton
android:id="@+id/delete"
@ -66,7 +66,7 @@
android:text="@string/menuDeleteText"
android:textColor="@color/colorWhite"
android:textSize="16sp"
android:textStyle="bold" />
android:textStyle="bold"/>
</LinearLayout>

View file

@ -12,7 +12,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:indeterminate="true"
app:indicatorColor="?attr/progressIndicatorColor" />
app:indicatorColor="?attr/progressIndicatorColor"/>
<androidx.core.widget.NestedScrollView
android:id="@+id/mainView"
@ -49,7 +49,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -72,7 +72,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -95,7 +95,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -105,7 +105,7 @@
android:layout_height="match_parent"
android:checked="true"
android:text="@string/newRepoPrivateCopy"
android:textColor="?attr/primaryTextColor" />
android:textColor="?attr/primaryTextColor"/>
<com.google.android.material.switchmaterial.SwitchMaterial
android:id="@+id/repoAsTemplate"
@ -113,7 +113,7 @@
android:layout_height="match_parent"
android:checked="true"
android:text="@string/repoPropertiesTemplate"
android:textColor="?attr/primaryTextColor" />
android:textColor="?attr/primaryTextColor"/>
<com.google.android.material.switchmaterial.SwitchMaterial
android:id="@+id/repoEnableIssues"
@ -121,7 +121,7 @@
android:layout_height="match_parent"
android:checked="true"
android:text="@string/repoPropertiesEnableIssues"
android:textColor="?attr/primaryTextColor" />
android:textColor="?attr/primaryTextColor"/>
<com.google.android.material.switchmaterial.SwitchMaterial
android:id="@+id/repoEnableWiki"
@ -129,7 +129,7 @@
android:layout_height="match_parent"
android:checked="true"
android:text="@string/repoPropertiesEnableWiki"
android:textColor="?attr/primaryTextColor" />
android:textColor="?attr/primaryTextColor"/>
<com.google.android.material.switchmaterial.SwitchMaterial
android:id="@+id/repoEnablePr"
@ -137,7 +137,7 @@
android:layout_height="match_parent"
android:checked="true"
android:text="@string/repoPropertiesEnablePr"
android:textColor="?attr/primaryTextColor" />
android:textColor="?attr/primaryTextColor"/>
<com.google.android.material.switchmaterial.SwitchMaterial
android:id="@+id/repoEnableTimer"
@ -145,7 +145,7 @@
android:layout_height="match_parent"
android:checked="true"
android:text="@string/repoPropertiesEnableTimeTracker"
android:textColor="?attr/primaryTextColor" />
android:textColor="?attr/primaryTextColor"/>
<com.google.android.material.switchmaterial.SwitchMaterial
android:id="@+id/repoEnableMerge"
@ -153,7 +153,7 @@
android:layout_height="match_parent"
android:checked="true"
android:text="@string/repoPropertiesEnableMergeCommits"
android:textColor="?attr/primaryTextColor" />
android:textColor="?attr/primaryTextColor"/>
<com.google.android.material.switchmaterial.SwitchMaterial
android:id="@+id/repoEnableRebase"
@ -161,7 +161,7 @@
android:layout_height="match_parent"
android:checked="true"
android:text="@string/repoPropertiesEnableRebase"
android:textColor="?attr/primaryTextColor" />
android:textColor="?attr/primaryTextColor"/>
<com.google.android.material.switchmaterial.SwitchMaterial
android:id="@+id/repoEnableSquash"
@ -169,7 +169,7 @@
android:layout_height="match_parent"
android:checked="true"
android:text="@string/repoPropertiesEnableSquash"
android:textColor="?attr/primaryTextColor" />
android:textColor="?attr/primaryTextColor"/>
<com.google.android.material.switchmaterial.SwitchMaterial
android:id="@+id/repoEnableForceMerge"
@ -177,7 +177,7 @@
android:layout_height="match_parent"
android:checked="true"
android:text="@string/repoPropertiesEnableForceMerge"
android:textColor="?attr/primaryTextColor" />
android:textColor="?attr/primaryTextColor"/>
</LinearLayout>
@ -188,7 +188,7 @@
android:layout_height="wrap_content"
android:indeterminate="true"
android:visibility="gone"
app:indicatorColor="?attr/progressIndicatorColor" />
app:indicatorColor="?attr/progressIndicatorColor"/>
<com.google.android.material.button.MaterialButton
android:id="@+id/save"
@ -198,7 +198,7 @@
android:text="@string/saveButton"
android:textColor="@color/colorWhite"
android:textSize="16sp"
android:textStyle="bold" />
android:textStyle="bold"/>
</LinearLayout>

View file

@ -30,7 +30,7 @@
android:text="@string/repoSettingsTransferOwnership"
android:textColor="?attr/primaryTextColor"
android:textSize="20sp"
android:textStyle="bold" />
android:textStyle="bold"/>
<TextView
android:id="@+id/description"
@ -39,7 +39,7 @@
android:layout_marginBottom="16dp"
android:text="@string/repoSettingsTransferOwnershipDescription"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/repoNameForTransferLayout"
@ -60,7 +60,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -83,7 +83,7 @@
android:textColor="?attr/inputTextColor"
android:textColorHighlight="?attr/hintColor"
android:textColorHint="?attr/hintColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</com.google.android.material.textfield.TextInputLayout>
@ -96,7 +96,7 @@
android:layout_height="wrap_content"
android:indeterminate="true"
android:visibility="gone"
app:indicatorColor="?attr/progressIndicatorColor" />
app:indicatorColor="?attr/progressIndicatorColor"/>
<com.google.android.material.button.MaterialButton
android:id="@+id/transfer"
@ -107,7 +107,7 @@
android:text="@string/repoTransferText"
android:textColor="@color/colorWhite"
android:textSize="16sp"
android:textStyle="bold" />
android:textStyle="bold"/>
</LinearLayout>

View file

@ -8,12 +8,11 @@
android:orientation="horizontal"
android:padding="15dp">
<TextView
android:id="@+id/toastText"
<TextView android:id="@+id/toastText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:textColor="@color/colorWhite" />
android:textColor="@color/colorWhite"/>
</LinearLayout>

View file

@ -8,12 +8,11 @@
android:orientation="horizontal"
android:padding="15dp">
<TextView
android:id="@+id/toastText"
<TextView android:id="@+id/toastText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:textColor="@color/colorWhite" />
android:textColor="@color/colorWhite"/>
</LinearLayout>

View file

@ -8,12 +8,11 @@
android:orientation="horizontal"
android:padding="15dp">
<TextView
android:id="@+id/toastText"
<TextView android:id="@+id/toastText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:textColor="@color/colorWhite" />
android:textColor="@color/colorWhite"/>
</LinearLayout>

View file

@ -8,12 +8,11 @@
android:orientation="horizontal"
android:padding="15dp">
<TextView
android:id="@+id/toastText"
<TextView android:id="@+id/toastText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:textColor="@color/colorPrimary" />
android:textColor="@color/colorPrimary"/>
</LinearLayout>

View file

@ -5,8 +5,7 @@
android:layout_height="match_parent"
android:background="?attr/primaryBackgroundColor">
<ScrollView
android:layout_width="match_parent"
<ScrollView android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?attr/primaryBackgroundColor">
@ -28,7 +27,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/generalImgContentText"
app:srcCompat="@drawable/ic_people" />
app:srcCompat="@drawable/ic_people"/>
<LinearLayout
android:layout_width="0dp"
@ -46,7 +45,7 @@
android:paddingEnd="12dp"
android:text="@string/adminUsers"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</LinearLayout>
@ -54,7 +53,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/generalImgContentText"
app:srcCompat="@drawable/ic_chevron_right" />
app:srcCompat="@drawable/ic_chevron_right"/>
</LinearLayout>
@ -62,7 +61,7 @@
android:id="@+id/divider"
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="?attr/dividerColor" />
android:background="?attr/dividerColor"/>
<LinearLayout
android:id="@+id/adminCronFrame"
@ -77,7 +76,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/generalImgContentText"
app:srcCompat="@drawable/ic_tasks" />
app:srcCompat="@drawable/ic_tasks"/>
<LinearLayout
android:layout_width="0dp"
@ -95,7 +94,7 @@
android:paddingEnd="12dp"
android:text="@string/adminCron"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</LinearLayout>
@ -103,14 +102,14 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/generalImgContentText"
app:srcCompat="@drawable/ic_chevron_right" />
app:srcCompat="@drawable/ic_chevron_right"/>
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="?attr/dividerColor" />
android:background="?attr/dividerColor"/>
<LinearLayout
android:id="@+id/unadoptedReposFrame"
@ -125,7 +124,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/generalImgContentText"
app:srcCompat="@drawable/ic_directory" />
app:srcCompat="@drawable/ic_directory"/>
<LinearLayout
android:layout_width="0dp"
@ -143,7 +142,7 @@
android:paddingEnd="12dp"
android:text="@string/unadoptedRepos"
android:textColor="?attr/primaryTextColor"
android:textSize="16sp" />
android:textSize="16sp"/>
</LinearLayout>
@ -151,7 +150,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/generalImgContentText"
app:srcCompat="@drawable/ic_chevron_right" />
app:srcCompat="@drawable/ic_chevron_right"/>
</LinearLayout>

View file

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="?attr/primaryBackgroundColor"
android:orientation="vertical">
@ -10,19 +10,19 @@
android:id="@+id/gridView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="?attr/primaryBackgroundColor"
android:gravity="center"
android:scrollbars="none"
android:numColumns="2"
android:padding="@dimen/dimen4dp"
android:scrollbars="none" />
android:gravity="center"
android:background="?attr/primaryBackgroundColor"
android:padding="@dimen/dimen4dp"/>
<com.google.android.material.progressindicator.LinearProgressIndicator
android:id="@+id/progress_bar"
style="@style/Widget.MaterialComponents.LinearProgressIndicator"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:indeterminate="true"
app:indicatorColor="?attr/progressIndicatorColor" />
style="@style/Widget.MaterialComponents.LinearProgressIndicator"
app:indicatorColor="?attr/progressIndicatorColor"/>
<TextView
android:id="@+id/noDataCollaborators"
@ -33,6 +33,6 @@
android:text="@string/noDataFound"
android:textColor="?attr/primaryTextColor"
android:textSize="18sp"
android:visibility="gone" />
android:visibility="gone"/>
</RelativeLayout>

Some files were not shown because too many files have changed in this diff Show more