cleanup code, remove some unneeded files
This commit is contained in:
parent
07edebdfcf
commit
f2f3be37b3
47 changed files with 189 additions and 286 deletions
|
@ -26,7 +26,7 @@ public class AboutActivity extends BaseActivity {
|
|||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.activity_about);
|
||||
|
||||
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
|
||||
Toolbar toolbar = findViewById(R.id.toolbar);
|
||||
setSupportActionBar(toolbar);
|
||||
ActionBar bar = getSupportActionBar();
|
||||
if (bar != null) {
|
||||
|
@ -34,12 +34,12 @@ public class AboutActivity extends BaseActivity {
|
|||
bar.setDisplayShowHomeEnabled(true);
|
||||
}
|
||||
|
||||
TextView versionTextView = (TextView) findViewById(R.id.versionTV);
|
||||
TextView versionTextView = findViewById(R.id.versionTV);
|
||||
String versionName = BuildConfig.VERSION_NAME;
|
||||
String versionFormat = getString(R.string.about_application_version);
|
||||
versionTextView.setText(String.format(versionFormat, versionName));
|
||||
|
||||
appAccountButton = (Button) findViewById(R.id.tusky_profile_button);
|
||||
appAccountButton = findViewById(R.id.tusky_profile_button);
|
||||
appAccountButton.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
|
|
|
@ -46,7 +46,7 @@ public class AccountListActivity extends BaseActivity {
|
|||
type = Type.BLOCKS;
|
||||
}
|
||||
|
||||
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
|
||||
Toolbar toolbar = findViewById(R.id.toolbar);
|
||||
setSupportActionBar(toolbar);
|
||||
ActionBar bar = getSupportActionBar();
|
||||
if (bar != null) {
|
||||
|
|
|
@ -169,20 +169,20 @@ public class ComposeActivity extends BaseActivity implements ComposeOptionsFragm
|
|||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.activity_compose);
|
||||
|
||||
textEditor = (EditTextTyped) findViewById(R.id.compose_edit_field);
|
||||
mediaPreviewBar = (LinearLayout) findViewById(R.id.compose_media_preview_bar);
|
||||
textEditor = findViewById(R.id.compose_edit_field);
|
||||
mediaPreviewBar = findViewById(R.id.compose_media_preview_bar);
|
||||
contentWarningBar = findViewById(R.id.compose_content_warning_bar);
|
||||
contentWarningEditor = (EditText) findViewById(R.id.field_content_warning);
|
||||
charactersLeft = (TextView) findViewById(R.id.characters_left);
|
||||
floatingBtn = (Button) findViewById(R.id.floating_btn);
|
||||
pickButton = (ImageButton) findViewById(R.id.compose_photo_pick);
|
||||
visibilityBtn = (ImageButton) findViewById(R.id.action_toggle_visibility);
|
||||
saveButton = (ImageButton) findViewById(R.id.compose_save_draft);
|
||||
hideMediaToggle = (ImageButton) findViewById(R.id.action_hide_media);
|
||||
postProgress = (ProgressBar) findViewById(R.id.postProgress);
|
||||
contentWarningEditor = findViewById(R.id.field_content_warning);
|
||||
charactersLeft = findViewById(R.id.characters_left);
|
||||
floatingBtn = findViewById(R.id.floating_btn);
|
||||
pickButton = findViewById(R.id.compose_photo_pick);
|
||||
visibilityBtn = findViewById(R.id.action_toggle_visibility);
|
||||
saveButton = findViewById(R.id.compose_save_draft);
|
||||
hideMediaToggle = findViewById(R.id.action_hide_media);
|
||||
postProgress = findViewById(R.id.postProgress);
|
||||
|
||||
// Setup the toolbar.
|
||||
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
|
||||
Toolbar toolbar = findViewById(R.id.toolbar);
|
||||
setSupportActionBar(toolbar);
|
||||
ActionBar actionBar = getSupportActionBar();
|
||||
if (actionBar != null) {
|
||||
|
@ -666,7 +666,7 @@ public class ComposeActivity extends BaseActivity implements ComposeOptionsFragm
|
|||
return c;
|
||||
}
|
||||
|
||||
public boolean saveTheToot(String s, @Nullable String contentWarning) {
|
||||
private boolean saveTheToot(String s, @Nullable String contentWarning) {
|
||||
if (TextUtils.isEmpty(s)) {
|
||||
return false;
|
||||
}
|
||||
|
@ -789,13 +789,13 @@ public class ComposeActivity extends BaseActivity implements ComposeOptionsFragm
|
|||
updateVisibleCharactersLeft();
|
||||
}
|
||||
|
||||
void setStateToReadying() {
|
||||
private void setStateToReadying() {
|
||||
statusAlreadyInFlight = true;
|
||||
disableButtons();
|
||||
postProgress.setVisibility(View.VISIBLE);
|
||||
}
|
||||
|
||||
void setStateToNotReadying() {
|
||||
private void setStateToNotReadying() {
|
||||
postProgress.setVisibility(View.INVISIBLE);
|
||||
statusAlreadyInFlight = false;
|
||||
enableButtons();
|
||||
|
@ -1706,9 +1706,9 @@ public class ComposeActivity extends BaseActivity implements ComposeOptionsFragm
|
|||
|
||||
Account account = getItem(position);
|
||||
if (account != null) {
|
||||
TextView username = (TextView) view.findViewById(R.id.username);
|
||||
TextView displayName = (TextView) view.findViewById(R.id.display_name);
|
||||
ImageView avatar = (ImageView) view.findViewById(R.id.avatar);
|
||||
TextView username = view.findViewById(R.id.username);
|
||||
TextView displayName = view.findViewById(R.id.display_name);
|
||||
ImageView avatar = view.findViewById(R.id.avatar);
|
||||
String format = getContext().getString(R.string.status_username_format);
|
||||
String formattedUsername = String.format(format, account.username);
|
||||
username.setText(formattedUsername);
|
||||
|
|
|
@ -95,17 +95,17 @@ public class EditProfileActivity extends BaseActivity {
|
|||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.activity_edit_profile);
|
||||
|
||||
ImageButton headerButton = (ImageButton) findViewById(R.id.edit_profile_header);
|
||||
headerPreview = (ImageView) findViewById(R.id.edit_profile_header_preview);
|
||||
headerProgress = (ProgressBar) findViewById(R.id.edit_profile_header_progress);
|
||||
avatarButton = (ImageButton) findViewById(R.id.edit_profile_avatar);
|
||||
avatarPreview = (ImageView) findViewById(R.id.edit_profile_avatar_preview);
|
||||
avatarProgress = (ProgressBar) findViewById(R.id.edit_profile_avatar_progress);
|
||||
displayNameEditText = (EditText) findViewById(R.id.edit_profile_display_name);
|
||||
noteEditText = (EditText) findViewById(R.id.edit_profile_note);
|
||||
saveProgress = (ProgressBar) findViewById(R.id.edit_profile_save_progress);
|
||||
ImageButton headerButton = findViewById(R.id.edit_profile_header);
|
||||
headerPreview = findViewById(R.id.edit_profile_header_preview);
|
||||
headerProgress = findViewById(R.id.edit_profile_header_progress);
|
||||
avatarButton = findViewById(R.id.edit_profile_avatar);
|
||||
avatarPreview = findViewById(R.id.edit_profile_avatar_preview);
|
||||
avatarProgress = findViewById(R.id.edit_profile_avatar_progress);
|
||||
displayNameEditText = findViewById(R.id.edit_profile_display_name);
|
||||
noteEditText = findViewById(R.id.edit_profile_note);
|
||||
saveProgress = findViewById(R.id.edit_profile_save_progress);
|
||||
|
||||
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
|
||||
Toolbar toolbar = findViewById(R.id.toolbar);
|
||||
setSupportActionBar(toolbar);
|
||||
ActionBar actionBar = getSupportActionBar();
|
||||
if (actionBar != null) {
|
||||
|
@ -171,8 +171,8 @@ public class EditProfileActivity extends BaseActivity {
|
|||
priorDisplayName = me.getDisplayName();
|
||||
priorNote = me.note.toString();
|
||||
CircularImageView avatar =
|
||||
(CircularImageView) findViewById(R.id.edit_profile_avatar_preview);
|
||||
ImageView header = (ImageView) findViewById(R.id.edit_profile_header_preview);
|
||||
findViewById(R.id.edit_profile_avatar_preview);
|
||||
ImageView header = findViewById(R.id.edit_profile_header_preview);
|
||||
|
||||
displayNameEditText.setText(priorDisplayName);
|
||||
noteEditText.setText(priorNote);
|
||||
|
|
|
@ -31,7 +31,7 @@ public class FavouritesActivity extends BaseActivity {
|
|||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.activity_favourites);
|
||||
|
||||
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
|
||||
Toolbar toolbar = findViewById(R.id.toolbar);
|
||||
setSupportActionBar(toolbar);
|
||||
ActionBar bar = getSupportActionBar();
|
||||
if (bar != null) {
|
||||
|
|
|
@ -73,11 +73,11 @@ public class LoginActivity extends AppCompatActivity {
|
|||
|
||||
setContentView(R.layout.activity_login);
|
||||
|
||||
input = (LinearLayout) findViewById(R.id.login_input);
|
||||
loading = (LinearLayout) findViewById(R.id.login_loading);
|
||||
editText = (EditText) findViewById(R.id.edit_text_domain);
|
||||
Button button = (Button) findViewById(R.id.button_login);
|
||||
TextView whatsAnInstance = (TextView) findViewById(R.id.whats_an_instance);
|
||||
input = findViewById(R.id.login_input);
|
||||
loading = findViewById(R.id.login_loading);
|
||||
editText = findViewById(R.id.edit_text_domain);
|
||||
Button button = findViewById(R.id.button_login);
|
||||
TextView whatsAnInstance = findViewById(R.id.whats_an_instance);
|
||||
|
||||
if (savedInstanceState != null) {
|
||||
domain = savedInstanceState.getString("domain");
|
||||
|
@ -114,7 +114,7 @@ public class LoginActivity extends AppCompatActivity {
|
|||
}
|
||||
})
|
||||
.show();
|
||||
TextView textView = (TextView) dialog.findViewById(android.R.id.message);
|
||||
TextView textView = dialog.findViewById(android.R.id.message);
|
||||
textView.setMovementMethod(LinkMovementMethod.getInstance());
|
||||
}
|
||||
});
|
||||
|
|
|
@ -78,7 +78,7 @@ public class MainActivity extends BaseActivity implements ActionButtonActivity {
|
|||
private static final long DRAWER_ITEM_FOLLOW_REQUESTS = 8;
|
||||
private static final long DRAWER_ITEM_SAVED_TOOT = 9;
|
||||
|
||||
protected static int COMPOSE_RESULT = 1;
|
||||
private static int COMPOSE_RESULT = 1;
|
||||
|
||||
private FloatingActionButton composeButton;
|
||||
private String loggedInAccountId;
|
||||
|
@ -101,10 +101,10 @@ public class MainActivity extends BaseActivity implements ActionButtonActivity {
|
|||
}
|
||||
}
|
||||
|
||||
FloatingActionButton floatingBtn = (FloatingActionButton) findViewById(R.id.floating_btn);
|
||||
ImageButton drawerToggle = (ImageButton) findViewById(R.id.drawer_toggle);
|
||||
TabLayout tabLayout = (TabLayout) findViewById(R.id.tab_layout);
|
||||
viewPager = (ViewPager) findViewById(R.id.pager);
|
||||
FloatingActionButton floatingBtn = findViewById(R.id.floating_btn);
|
||||
ImageButton drawerToggle = findViewById(R.id.drawer_toggle);
|
||||
TabLayout tabLayout = findViewById(R.id.tab_layout);
|
||||
viewPager = findViewById(R.id.pager);
|
||||
|
||||
floatingBtn.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
|
|
|
@ -65,7 +65,7 @@ public class ReportActivity extends BaseActivity {
|
|||
String statusId = intent.getStringExtra("status_id");
|
||||
String statusContent = intent.getStringExtra("status_content");
|
||||
|
||||
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
|
||||
Toolbar toolbar = findViewById(R.id.toolbar);
|
||||
setSupportActionBar(toolbar);
|
||||
ActionBar bar = getSupportActionBar();
|
||||
if (bar != null) {
|
||||
|
@ -77,7 +77,7 @@ public class ReportActivity extends BaseActivity {
|
|||
}
|
||||
anyView = toolbar;
|
||||
|
||||
final RecyclerView recyclerView = (RecyclerView) findViewById(R.id.report_recycler_view);
|
||||
final RecyclerView recyclerView = findViewById(R.id.report_recycler_view);
|
||||
recyclerView.setHasFixedSize(true);
|
||||
LinearLayoutManager layoutManager = new LinearLayoutManager(this);
|
||||
recyclerView.setLayoutManager(layoutManager);
|
||||
|
@ -95,7 +95,7 @@ public class ReportActivity extends BaseActivity {
|
|||
HtmlUtils.fromHtml(statusContent), true);
|
||||
adapter.addItem(reportStatus);
|
||||
|
||||
comment = (EditText) findViewById(R.id.report_comment);
|
||||
comment = findViewById(R.id.report_comment);
|
||||
|
||||
reportAlreadyInFlight = false;
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@ import java.util.ArrayList;
|
|||
import java.util.List;
|
||||
|
||||
public class SavedTootActivity extends BaseActivity implements SavedTootAdapter.SavedTootAction {
|
||||
public static final String TAG = "SavedTootActivity"; // logging tag
|
||||
private static final String TAG = "SavedTootActivity"; // logging tag
|
||||
|
||||
// dao
|
||||
private static TootDao tootDao = TuskyApplication.getDB().tootDao();
|
||||
|
@ -55,7 +55,7 @@ public class SavedTootActivity extends BaseActivity implements SavedTootAdapter.
|
|||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.activity_saved_toot);
|
||||
|
||||
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
|
||||
Toolbar toolbar = findViewById(R.id.toolbar);
|
||||
setSupportActionBar(toolbar);
|
||||
ActionBar bar = getSupportActionBar();
|
||||
if (bar != null) {
|
||||
|
@ -64,8 +64,8 @@ public class SavedTootActivity extends BaseActivity implements SavedTootAdapter.
|
|||
bar.setDisplayShowHomeEnabled(true);
|
||||
}
|
||||
|
||||
RecyclerView recyclerView = (RecyclerView) findViewById(R.id.recycler_view);
|
||||
noContent = (TextView) findViewById(R.id.no_content);
|
||||
RecyclerView recyclerView = findViewById(R.id.recycler_view);
|
||||
noContent = findViewById(R.id.no_content);
|
||||
recyclerView.setHasFixedSize(true);
|
||||
LinearLayoutManager layoutManager = new LinearLayoutManager(this);
|
||||
recyclerView.setLayoutManager(layoutManager);
|
||||
|
@ -98,7 +98,7 @@ public class SavedTootActivity extends BaseActivity implements SavedTootAdapter.
|
|||
return super.onOptionsItemSelected(item);
|
||||
}
|
||||
|
||||
public void getAllToot() {
|
||||
private void getAllToot() {
|
||||
new AsyncTask<Void, Void, List<TootEntity>>() {
|
||||
@Override
|
||||
protected List<TootEntity> doInBackground(Void... params) {
|
||||
|
|
|
@ -55,10 +55,10 @@ public class SearchActivity extends BaseActivity implements SearchView.OnQueryTe
|
|||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.activity_search);
|
||||
|
||||
progressBar = (ProgressBar) findViewById(R.id.progress_bar);
|
||||
messageNoResults = (TextView) findViewById(R.id.message_no_results);
|
||||
progressBar = findViewById(R.id.progress_bar);
|
||||
messageNoResults = findViewById(R.id.message_no_results);
|
||||
|
||||
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
|
||||
Toolbar toolbar = findViewById(R.id.toolbar);
|
||||
setSupportActionBar(toolbar);
|
||||
ActionBar bar = getSupportActionBar();
|
||||
if (bar != null) {
|
||||
|
@ -67,7 +67,7 @@ public class SearchActivity extends BaseActivity implements SearchView.OnQueryTe
|
|||
bar.setDisplayShowTitleEnabled(false);
|
||||
}
|
||||
|
||||
RecyclerView recyclerView = (RecyclerView) findViewById(R.id.recycler_view);
|
||||
RecyclerView recyclerView = findViewById(R.id.recycler_view);
|
||||
recyclerView.setHasFixedSize(true);
|
||||
recyclerView.setLayoutManager(new LinearLayoutManager(this));
|
||||
adapter = new SearchResultsAdapter(this);
|
||||
|
|
|
@ -67,8 +67,8 @@ public class ViewMediaActivity extends BaseActivity implements ViewMediaFragment
|
|||
supportPostponeEnterTransition();
|
||||
|
||||
// Obtain the views.
|
||||
toolbar = (Toolbar) findViewById(R.id.toolbar);
|
||||
viewPager = (ImageViewPager) findViewById(R.id.view_pager);
|
||||
toolbar = findViewById(R.id.toolbar);
|
||||
viewPager = findViewById(R.id.view_pager);
|
||||
anyView = toolbar;
|
||||
|
||||
// Gather the parameters.
|
||||
|
|
|
@ -33,7 +33,7 @@ public class ViewTagActivity extends BaseActivity {
|
|||
|
||||
String hashtag = getIntent().getStringExtra("hashtag");
|
||||
|
||||
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
|
||||
Toolbar toolbar = findViewById(R.id.toolbar);
|
||||
setSupportActionBar(toolbar);
|
||||
ActionBar bar = getSupportActionBar();
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ public class ViewThreadActivity extends BaseActivity {
|
|||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.activity_view_thread);
|
||||
|
||||
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
|
||||
Toolbar toolbar = findViewById(R.id.toolbar);
|
||||
setSupportActionBar(toolbar);
|
||||
ActionBar bar = getSupportActionBar();
|
||||
if (bar != null) {
|
||||
|
|
|
@ -42,10 +42,10 @@ public class ViewVideoActivity extends BaseActivity {
|
|||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.activity_view_video);
|
||||
|
||||
final ProgressBar progressBar = (ProgressBar) findViewById(R.id.video_progress);
|
||||
VideoView videoView = (VideoView) findViewById(R.id.video_player);
|
||||
final ProgressBar progressBar = findViewById(R.id.video_progress);
|
||||
VideoView videoView = findViewById(R.id.video_player);
|
||||
|
||||
toolbar = (Toolbar) findViewById(R.id.toolbar);
|
||||
toolbar = findViewById(R.id.toolbar);
|
||||
setSupportActionBar(toolbar);
|
||||
ActionBar bar = getSupportActionBar();
|
||||
if (bar != null) {
|
||||
|
|
|
@ -22,9 +22,9 @@ class AccountViewHolder extends RecyclerView.ViewHolder {
|
|||
AccountViewHolder(View itemView) {
|
||||
super(itemView);
|
||||
container = itemView.findViewById(R.id.account_container);
|
||||
username = (TextView) itemView.findViewById(R.id.account_username);
|
||||
displayName = (TextView) itemView.findViewById(R.id.account_display_name);
|
||||
avatar = (CircularImageView) itemView.findViewById(R.id.account_avatar);
|
||||
username = itemView.findViewById(R.id.account_username);
|
||||
displayName = itemView.findViewById(R.id.account_display_name);
|
||||
avatar = itemView.findViewById(R.id.account_avatar);
|
||||
}
|
||||
|
||||
void setupWithAccount(Account account) {
|
||||
|
|
|
@ -83,10 +83,10 @@ public class BlocksAdapter extends AccountAdapter {
|
|||
|
||||
BlockedUserViewHolder(View itemView) {
|
||||
super(itemView);
|
||||
avatar = (CircularImageView) itemView.findViewById(R.id.blocked_user_avatar);
|
||||
username = (TextView) itemView.findViewById(R.id.blocked_user_username);
|
||||
displayName = (TextView) itemView.findViewById(R.id.blocked_user_display_name);
|
||||
unblock = (ImageButton) itemView.findViewById(R.id.blocked_user_unblock);
|
||||
avatar = itemView.findViewById(R.id.blocked_user_avatar);
|
||||
username = itemView.findViewById(R.id.blocked_user_username);
|
||||
displayName = itemView.findViewById(R.id.blocked_user_display_name);
|
||||
unblock = itemView.findViewById(R.id.blocked_user_unblock);
|
||||
}
|
||||
|
||||
void setupWithAccount(Account account) {
|
||||
|
|
|
@ -84,11 +84,11 @@ public class FollowRequestsAdapter extends AccountAdapter {
|
|||
|
||||
FollowRequestViewHolder(View itemView) {
|
||||
super(itemView);
|
||||
avatar = (CircularImageView) itemView.findViewById(R.id.follow_request_avatar);
|
||||
username = (TextView) itemView.findViewById(R.id.follow_request_username);
|
||||
displayName = (TextView) itemView.findViewById(R.id.follow_request_display_name);
|
||||
accept = (ImageButton) itemView.findViewById(R.id.follow_request_accept);
|
||||
reject = (ImageButton) itemView.findViewById(R.id.follow_request_reject);
|
||||
avatar = itemView.findViewById(R.id.follow_request_avatar);
|
||||
username = itemView.findViewById(R.id.follow_request_username);
|
||||
displayName = itemView.findViewById(R.id.follow_request_display_name);
|
||||
accept = itemView.findViewById(R.id.follow_request_accept);
|
||||
reject = itemView.findViewById(R.id.follow_request_reject);
|
||||
}
|
||||
|
||||
void setupWithAccount(Account account) {
|
||||
|
|
|
@ -39,8 +39,8 @@ public class FooterViewHolder extends RecyclerView.ViewHolder {
|
|||
FooterViewHolder(View itemView) {
|
||||
super(itemView);
|
||||
container = itemView.findViewById(R.id.footer_container);
|
||||
progressBar = (ProgressBar) itemView.findViewById(R.id.footer_progress_bar);
|
||||
endMessage = (TextView) itemView.findViewById(R.id.footer_end_message);
|
||||
progressBar = itemView.findViewById(R.id.footer_progress_bar);
|
||||
endMessage = itemView.findViewById(R.id.footer_end_message);
|
||||
Drawable top = AppCompatResources.getDrawable(itemView.getContext(),
|
||||
R.drawable.elephant_friend);
|
||||
if (top != null) {
|
||||
|
|
|
@ -68,10 +68,10 @@ public class MutesAdapter extends AccountAdapter {
|
|||
|
||||
MutedUserViewHolder(View itemView) {
|
||||
super(itemView);
|
||||
avatar = (CircularImageView) itemView.findViewById(R.id.muted_user_avatar);
|
||||
username = (TextView) itemView.findViewById(R.id.muted_user_username);
|
||||
displayName = (TextView) itemView.findViewById(R.id.muted_user_display_name);
|
||||
unmute = (ImageButton) itemView.findViewById(R.id.muted_user_unmute);
|
||||
avatar = itemView.findViewById(R.id.muted_user_avatar);
|
||||
username = itemView.findViewById(R.id.muted_user_username);
|
||||
displayName = itemView.findViewById(R.id.muted_user_display_name);
|
||||
unmute = itemView.findViewById(R.id.muted_user_unmute);
|
||||
}
|
||||
|
||||
void setupWithAccount(Account account) {
|
||||
|
|
|
@ -200,10 +200,10 @@ public class NotificationsAdapter extends RecyclerView.Adapter {
|
|||
|
||||
FollowViewHolder(View itemView) {
|
||||
super(itemView);
|
||||
message = (TextView) itemView.findViewById(R.id.notification_text);
|
||||
usernameView = (TextView) itemView.findViewById(R.id.notification_username);
|
||||
displayNameView = (TextView) itemView.findViewById(R.id.notification_display_name);
|
||||
avatar = (ImageView) itemView.findViewById(R.id.notification_avatar);
|
||||
message = itemView.findViewById(R.id.notification_text);
|
||||
usernameView = itemView.findViewById(R.id.notification_username);
|
||||
displayNameView = itemView.findViewById(R.id.notification_display_name);
|
||||
avatar = itemView.findViewById(R.id.notification_avatar);
|
||||
}
|
||||
|
||||
void setMessage(String displayName, String username, String avatarUrl) {
|
||||
|
@ -247,13 +247,12 @@ public class NotificationsAdapter extends RecyclerView.Adapter {
|
|||
|
||||
StatusNotificationViewHolder(View itemView) {
|
||||
super(itemView);
|
||||
message = (TextView) itemView.findViewById(R.id.notification_text);
|
||||
icon = (ImageView) itemView.findViewById(R.id.notification_icon);
|
||||
statusContent = (TextView) itemView.findViewById(R.id.notification_content);
|
||||
container = (ViewGroup) itemView.findViewById(R.id.notification_container);
|
||||
statusAvatar = (ImageView) itemView.findViewById(R.id.notification_status_avatar);
|
||||
notificationAvatar = (ImageView)
|
||||
itemView.findViewById(R.id.notification_notification_avatar);
|
||||
message = itemView.findViewById(R.id.notification_text);
|
||||
icon = itemView.findViewById(R.id.notification_icon);
|
||||
statusContent = itemView.findViewById(R.id.notification_content);
|
||||
container = itemView.findViewById(R.id.notification_container);
|
||||
statusAvatar = itemView.findViewById(R.id.notification_status_avatar);
|
||||
notificationAvatar = itemView.findViewById(R.id.notification_notification_avatar);
|
||||
int darkerFilter = Color.rgb(123, 123, 123);
|
||||
statusAvatar.setColorFilter(darkerFilter, PorterDuff.Mode.MULTIPLY);
|
||||
notificationAvatar.setColorFilter(darkerFilter, PorterDuff.Mode.MULTIPLY);
|
||||
|
|
|
@ -120,8 +120,8 @@ public class ReportAdapter extends RecyclerView.Adapter {
|
|||
|
||||
ReportStatusViewHolder(View view) {
|
||||
super(view);
|
||||
content = (TextView) view.findViewById(R.id.report_status_content);
|
||||
checkBox = (CheckBox) view.findViewById(R.id.report_status_check_box);
|
||||
content = view.findViewById(R.id.report_status_content);
|
||||
checkBox = view.findViewById(R.id.report_status_check_box);
|
||||
}
|
||||
|
||||
void setupWithStatus(final ReportStatus status) {
|
||||
|
|
|
@ -80,7 +80,7 @@ public class SavedTootAdapter extends RecyclerView.Adapter {
|
|||
return toot;
|
||||
}
|
||||
|
||||
public TootEntity getItem(int position) {
|
||||
private TootEntity getItem(int position) {
|
||||
if (position >= 0 && position < list.size()) {
|
||||
return list.get(position);
|
||||
}
|
||||
|
@ -111,8 +111,8 @@ public class SavedTootAdapter extends RecyclerView.Adapter {
|
|||
TootViewHolder(View view) {
|
||||
super(view);
|
||||
this.view = view;
|
||||
this.content = (TextView) view.findViewById(R.id.content);
|
||||
this.suppr = (ImageButton) view.findViewById(R.id.suppr);
|
||||
this.content = view.findViewById(R.id.content);
|
||||
this.suppr = view.findViewById(R.id.suppr);
|
||||
}
|
||||
|
||||
void bind(final int position, final TootEntity item) {
|
||||
|
|
|
@ -109,7 +109,7 @@ public class SearchResultsAdapter extends RecyclerView.Adapter {
|
|||
|
||||
HashtagViewHolder(View itemView) {
|
||||
super(itemView);
|
||||
hashtag = (TextView) itemView.findViewById(R.id.hashtag);
|
||||
hashtag = itemView.findViewById(R.id.hashtag);
|
||||
}
|
||||
|
||||
void setup(final String tag, final LinkListener listener) {
|
||||
|
|
|
@ -60,30 +60,30 @@ class StatusBaseViewHolder extends RecyclerView.ViewHolder {
|
|||
StatusBaseViewHolder(View itemView) {
|
||||
super(itemView);
|
||||
container = itemView.findViewById(R.id.status_container);
|
||||
displayName = (TextView) itemView.findViewById(R.id.status_display_name);
|
||||
username = (TextView) itemView.findViewById(R.id.status_username);
|
||||
timestamp = (TextView) itemView.findViewById(R.id.status_timestamp);
|
||||
content = (TextView) itemView.findViewById(R.id.status_content);
|
||||
avatar = (ImageView) itemView.findViewById(R.id.status_avatar);
|
||||
replyButton = (ImageButton) itemView.findViewById(R.id.status_reply);
|
||||
reblogButton = (SparkButton) itemView.findViewById(R.id.status_reblog);
|
||||
favouriteButton = (SparkButton) itemView.findViewById(R.id.status_favourite);
|
||||
moreButton = (ImageButton) itemView.findViewById(R.id.status_more);
|
||||
displayName = itemView.findViewById(R.id.status_display_name);
|
||||
username = itemView.findViewById(R.id.status_username);
|
||||
timestamp = itemView.findViewById(R.id.status_timestamp);
|
||||
content = itemView.findViewById(R.id.status_content);
|
||||
avatar = itemView.findViewById(R.id.status_avatar);
|
||||
replyButton = itemView.findViewById(R.id.status_reply);
|
||||
reblogButton = itemView.findViewById(R.id.status_reblog);
|
||||
favouriteButton = itemView.findViewById(R.id.status_favourite);
|
||||
moreButton = itemView.findViewById(R.id.status_more);
|
||||
reblogged = false;
|
||||
favourited = false;
|
||||
mediaPreview0 = (ImageView) itemView.findViewById(R.id.status_media_preview_0);
|
||||
mediaPreview1 = (ImageView) itemView.findViewById(R.id.status_media_preview_1);
|
||||
mediaPreview2 = (ImageView) itemView.findViewById(R.id.status_media_preview_2);
|
||||
mediaPreview3 = (ImageView) itemView.findViewById(R.id.status_media_preview_3);
|
||||
mediaPreview0 = itemView.findViewById(R.id.status_media_preview_0);
|
||||
mediaPreview1 = itemView.findViewById(R.id.status_media_preview_1);
|
||||
mediaPreview2 = itemView.findViewById(R.id.status_media_preview_2);
|
||||
mediaPreview3 = itemView.findViewById(R.id.status_media_preview_3);
|
||||
sensitiveMediaWarning = itemView.findViewById(R.id.status_sensitive_media_warning);
|
||||
sensitiveMediaShow = itemView.findViewById(R.id.status_sensitive_media_button);
|
||||
videoIndicator = itemView.findViewById(R.id.status_video_indicator);
|
||||
mediaLabel = (TextView) itemView.findViewById(R.id.status_media_label);
|
||||
mediaLabel = itemView.findViewById(R.id.status_media_label);
|
||||
contentWarningBar = itemView.findViewById(R.id.status_content_warning_bar);
|
||||
contentWarningDescription =
|
||||
(TextView) itemView.findViewById(R.id.status_content_warning_description);
|
||||
itemView.findViewById(R.id.status_content_warning_description);
|
||||
contentWarningButton =
|
||||
(ToggleButton) itemView.findViewById(R.id.status_content_warning_button);
|
||||
itemView.findViewById(R.id.status_content_warning_button);
|
||||
}
|
||||
|
||||
private void setDisplayName(String name) {
|
||||
|
|
|
@ -26,9 +26,9 @@ class StatusDetailedViewHolder extends StatusBaseViewHolder {
|
|||
|
||||
StatusDetailedViewHolder(View view) {
|
||||
super(view);
|
||||
reblogs = (TextView) view.findViewById(R.id.status_reblogs);
|
||||
favourites = (TextView) view.findViewById(R.id.status_favourites);
|
||||
application = (TextView) view.findViewById(R.id.status_application);
|
||||
reblogs = view.findViewById(R.id.status_reblogs);
|
||||
favourites = view.findViewById(R.id.status_favourites);
|
||||
application = view.findViewById(R.id.status_application);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -36,9 +36,9 @@ public class StatusViewHolder extends StatusBaseViewHolder {
|
|||
|
||||
StatusViewHolder(View itemView) {
|
||||
super(itemView);
|
||||
avatarReblog = (ImageView) itemView.findViewById(R.id.status_avatar_reblog);
|
||||
avatarReblog = itemView.findViewById(R.id.status_avatar_reblog);
|
||||
rebloggedBar = itemView.findViewById(R.id.status_reblogged_bar);
|
||||
rebloggedByDisplayName = (TextView) itemView.findViewById(R.id.status_reblogged);
|
||||
rebloggedByDisplayName = itemView.findViewById(R.id.status_reblogged);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -117,7 +117,7 @@ public class AccountListFragment extends BaseFragment implements AccountActionLi
|
|||
View rootView = inflater.inflate(R.layout.fragment_account_list, container, false);
|
||||
|
||||
Context context = getContext();
|
||||
recyclerView = (RecyclerView) rootView.findViewById(R.id.recycler_view);
|
||||
recyclerView = rootView.findViewById(R.id.recycler_view);
|
||||
recyclerView.setHasFixedSize(true);
|
||||
layoutManager = new LinearLayoutManager(context);
|
||||
recyclerView.setLayoutManager(layoutManager);
|
||||
|
@ -153,7 +153,7 @@ public class AccountListFragment extends BaseFragment implements AccountActionLi
|
|||
BaseActivity activity = (BaseActivity) getActivity();
|
||||
|
||||
if (jumpToTopAllowed()) {
|
||||
TabLayout layout = (TabLayout) activity.findViewById(R.id.tab_layout);
|
||||
TabLayout layout = activity.findViewById(R.id.tab_layout);
|
||||
onTabSelectedListener = new TabLayout.OnTabSelectedListener() {
|
||||
@Override
|
||||
public void onTabSelected(TabLayout.Tab tab) {}
|
||||
|
@ -226,7 +226,7 @@ public class AccountListFragment extends BaseFragment implements AccountActionLi
|
|||
@Override
|
||||
public void onDestroyView() {
|
||||
if (jumpToTopAllowed()) {
|
||||
TabLayout tabLayout = (TabLayout) getActivity().findViewById(R.id.tab_layout);
|
||||
TabLayout tabLayout = getActivity().findViewById(R.id.tab_layout);
|
||||
tabLayout.removeOnTabSelectedListener(onTabSelectedListener);
|
||||
}
|
||||
super.onDestroyView();
|
||||
|
|
|
@ -71,7 +71,7 @@ public class ComposeOptionsFragment extends BottomSheetDialogFragment {
|
|||
String statusVisibility = arguments.getString("visibility");
|
||||
boolean statusHideText = arguments.getBoolean("hideText");
|
||||
|
||||
radio = (RadioGroup) rootView.findViewById(R.id.radio_visibility);
|
||||
radio = rootView.findViewById(R.id.radio_visibility);
|
||||
int radioCheckedId = R.id.radio_public;
|
||||
if (statusVisibility != null) {
|
||||
switch (statusVisibility) {
|
||||
|
@ -83,16 +83,16 @@ public class ComposeOptionsFragment extends BottomSheetDialogFragment {
|
|||
}
|
||||
radio.check(radioCheckedId);
|
||||
|
||||
RadioButton publicButton = (RadioButton) rootView.findViewById(R.id.radio_public);
|
||||
RadioButton unlistedButton = (RadioButton) rootView.findViewById(R.id.radio_unlisted);
|
||||
RadioButton privateButton = (RadioButton) rootView.findViewById(R.id.radio_private);
|
||||
RadioButton directButton = (RadioButton) rootView.findViewById(R.id.radio_direct);
|
||||
RadioButton publicButton = rootView.findViewById(R.id.radio_public);
|
||||
RadioButton unlistedButton = rootView.findViewById(R.id.radio_unlisted);
|
||||
RadioButton privateButton = rootView.findViewById(R.id.radio_private);
|
||||
RadioButton directButton = rootView.findViewById(R.id.radio_direct);
|
||||
setRadioButtonDrawable(getContext(), publicButton, R.drawable.ic_public_24dp);
|
||||
setRadioButtonDrawable(getContext(), unlistedButton, R.drawable.ic_lock_open_24dp);
|
||||
setRadioButtonDrawable(getContext(), privateButton, R.drawable.ic_lock_outline_24dp);
|
||||
setRadioButtonDrawable(getContext(), directButton, R.drawable.ic_email_24dp);
|
||||
|
||||
hideText = (CheckBox) rootView.findViewById(R.id.compose_hide_text);
|
||||
hideText = rootView.findViewById(R.id.compose_hide_text);
|
||||
hideText.setChecked(statusHideText);
|
||||
|
||||
return rootView;
|
||||
|
|
|
@ -109,10 +109,10 @@ public class NotificationsFragment extends SFragment implements
|
|||
|
||||
// Setup the SwipeRefreshLayout.
|
||||
Context context = getContext();
|
||||
swipeRefreshLayout = (SwipeRefreshLayout) rootView.findViewById(R.id.swipe_refresh_layout);
|
||||
swipeRefreshLayout = rootView.findViewById(R.id.swipe_refresh_layout);
|
||||
swipeRefreshLayout.setOnRefreshListener(this);
|
||||
// Setup the RecyclerView.
|
||||
recyclerView = (RecyclerView) rootView.findViewById(R.id.recycler_view);
|
||||
recyclerView = rootView.findViewById(R.id.recycler_view);
|
||||
recyclerView.setHasFixedSize(true);
|
||||
layoutManager = new LinearLayoutManager(context);
|
||||
recyclerView.setLayoutManager(layoutManager);
|
||||
|
@ -152,7 +152,7 @@ public class NotificationsFragment extends SFragment implements
|
|||
MainActivity activity = (MainActivity) getActivity();
|
||||
|
||||
// MainActivity's layout is guaranteed to be inflated until onCreate returns.
|
||||
TabLayout layout = (TabLayout) activity.findViewById(R.id.tab_layout);
|
||||
TabLayout layout = activity.findViewById(R.id.tab_layout);
|
||||
onTabSelectedListener = new TabLayout.OnTabSelectedListener() {
|
||||
@Override
|
||||
public void onTabSelected(TabLayout.Tab tab) {
|
||||
|
@ -208,7 +208,7 @@ public class NotificationsFragment extends SFragment implements
|
|||
|
||||
@Override
|
||||
public void onDestroyView() {
|
||||
TabLayout tabLayout = (TabLayout) getActivity().findViewById(R.id.tab_layout);
|
||||
TabLayout tabLayout = getActivity().findViewById(R.id.tab_layout);
|
||||
tabLayout.removeOnTabSelectedListener(onTabSelectedListener);
|
||||
|
||||
LocalBroadcastManager.getInstance(getContext())
|
||||
|
|
|
@ -134,10 +134,10 @@ public class TimelineFragment extends SFragment implements
|
|||
|
||||
// Setup the SwipeRefreshLayout.
|
||||
Context context = getContext();
|
||||
swipeRefreshLayout = (SwipeRefreshLayout) rootView.findViewById(R.id.swipe_refresh_layout);
|
||||
swipeRefreshLayout = rootView.findViewById(R.id.swipe_refresh_layout);
|
||||
swipeRefreshLayout.setOnRefreshListener(this);
|
||||
// Setup the RecyclerView.
|
||||
recyclerView = (RecyclerView) rootView.findViewById(R.id.recycler_view);
|
||||
recyclerView = rootView.findViewById(R.id.recycler_view);
|
||||
recyclerView.setHasFixedSize(true);
|
||||
layoutManager = new LinearLayoutManager(context);
|
||||
recyclerView.setLayoutManager(layoutManager);
|
||||
|
@ -175,7 +175,7 @@ public class TimelineFragment extends SFragment implements
|
|||
super.onActivityCreated(savedInstanceState);
|
||||
|
||||
if (jumpToTopAllowed()) {
|
||||
TabLayout layout = (TabLayout) getActivity().findViewById(R.id.tab_layout);
|
||||
TabLayout layout = getActivity().findViewById(R.id.tab_layout);
|
||||
onTabSelectedListener = new TabLayout.OnTabSelectedListener() {
|
||||
@Override
|
||||
public void onTabSelected(TabLayout.Tab tab) {
|
||||
|
@ -241,7 +241,7 @@ public class TimelineFragment extends SFragment implements
|
|||
@Override
|
||||
public void onDestroyView() {
|
||||
if (jumpToTopAllowed()) {
|
||||
TabLayout tabLayout = (TabLayout) getActivity().findViewById(R.id.tab_layout);
|
||||
TabLayout tabLayout = getActivity().findViewById(R.id.tab_layout);
|
||||
tabLayout.removeOnTabSelectedListener(onTabSelectedListener);
|
||||
}
|
||||
LocalBroadcastManager.getInstance(getContext()).unregisterReceiver(timelineReceiver);
|
||||
|
|
|
@ -42,8 +42,8 @@ public class ViewMediaFragment extends BaseFragment {
|
|||
|
||||
private PhotoViewAttacher attacher;
|
||||
private PhotoActionsListener photoActionsListener;
|
||||
View rootView;
|
||||
PhotoView photoView;
|
||||
private View rootView;
|
||||
private PhotoView photoView;
|
||||
|
||||
private static final String ARG_START_POSTPONED_TRANSITION = "startPostponedTransition";
|
||||
|
||||
|
@ -67,7 +67,7 @@ public class ViewMediaFragment extends BaseFragment {
|
|||
public View onCreateView(LayoutInflater inflater, final ViewGroup container,
|
||||
Bundle savedInstanceState) {
|
||||
rootView = inflater.inflate(R.layout.fragment_view_media, container, false);
|
||||
photoView = (PhotoView) rootView.findViewById(R.id.view_media_image);
|
||||
photoView = rootView.findViewById(R.id.view_media_image);
|
||||
|
||||
final Bundle arguments = getArguments();
|
||||
final String url = arguments.getString("url");
|
||||
|
|
|
@ -64,7 +64,7 @@ public class ViewThreadFragment extends SFragment implements
|
|||
private String thisThreadsStatusId;
|
||||
private TimelineReceiver timelineReceiver;
|
||||
|
||||
int statusIndex = 0;
|
||||
private int statusIndex = 0;
|
||||
|
||||
private final PairedList<Status, StatusViewData> statuses =
|
||||
new PairedList<>(ViewDataUtils.statusMapper());
|
||||
|
@ -84,10 +84,10 @@ public class ViewThreadFragment extends SFragment implements
|
|||
View rootView = inflater.inflate(R.layout.fragment_view_thread, container, false);
|
||||
|
||||
Context context = getContext();
|
||||
swipeRefreshLayout = (SwipeRefreshLayout) rootView.findViewById(R.id.swipe_refresh_layout);
|
||||
swipeRefreshLayout = rootView.findViewById(R.id.swipe_refresh_layout);
|
||||
swipeRefreshLayout.setOnRefreshListener(this);
|
||||
|
||||
recyclerView = (RecyclerView) rootView.findViewById(R.id.recycler_view);
|
||||
recyclerView = rootView.findViewById(R.id.recycler_view);
|
||||
recyclerView.setHasFixedSize(true);
|
||||
LinearLayoutManager layoutManager = new LinearLayoutManager(context);
|
||||
recyclerView.setLayoutManager(layoutManager);
|
||||
|
@ -335,7 +335,7 @@ public class ViewThreadFragment extends SFragment implements
|
|||
}
|
||||
}
|
||||
|
||||
public int setStatus(Status status) {
|
||||
private int setStatus(Status status) {
|
||||
if (statuses.size() > 0
|
||||
&& statusIndex < statuses.size()
|
||||
&& statuses.get(statusIndex).equals(status)) {
|
||||
|
@ -350,7 +350,7 @@ public class ViewThreadFragment extends SFragment implements
|
|||
return i;
|
||||
}
|
||||
|
||||
public void setContext(List<Status> ancestors, List<Status> descendants) {
|
||||
private void setContext(List<Status> ancestors, List<Status> descendants) {
|
||||
Status mainStatus = null;
|
||||
|
||||
// In case of refresh, remove old ancestors and descendants first. We'll remove all blindly,
|
||||
|
|
|
@ -17,7 +17,6 @@ package com.keylesspalace.tusky.interfaces;
|
|||
|
||||
import android.view.View;
|
||||
|
||||
import com.keylesspalace.tusky.adapter.StatusViewHolder;
|
||||
import com.keylesspalace.tusky.entity.Status;
|
||||
|
||||
public interface StatusActionListener extends LinkListener {
|
||||
|
|
|
@ -73,7 +73,7 @@ public class AccountPagerAdapter extends FragmentPagerAdapter {
|
|||
|
||||
public View getTabView(int position, ViewGroup root) {
|
||||
View view = LayoutInflater.from(context).inflate(R.layout.tab_account, root, false);
|
||||
TextView title = (TextView) view.findViewById(R.id.title);
|
||||
TextView title = view.findViewById(R.id.title);
|
||||
title.setText(pageTitles[position]);
|
||||
return view;
|
||||
}
|
||||
|
|
|
@ -10,13 +10,11 @@ import java.util.Locale;
|
|||
|
||||
public class ImagePagerAdapter extends FragmentPagerAdapter {
|
||||
private String[] urls;
|
||||
private FragmentManager fragmentManager;
|
||||
private int initialPosition;
|
||||
|
||||
public ImagePagerAdapter(FragmentManager fragmentManager, String[] urls, int initialPosition) {
|
||||
super(fragmentManager);
|
||||
this.urls = urls;
|
||||
this.fragmentManager = fragmentManager;
|
||||
this.initialPosition = initialPosition;
|
||||
}
|
||||
|
||||
|
|
|
@ -17,10 +17,10 @@ import java.util.List;
|
|||
|
||||
public class CustomTabsHelper {
|
||||
private static final String TAG = "CustomTabsHelper";
|
||||
static final String STABLE_PACKAGE = "com.android.chrome";
|
||||
static final String BETA_PACKAGE = "com.chrome.beta";
|
||||
static final String DEV_PACKAGE = "com.chrome.dev";
|
||||
static final String LOCAL_PACKAGE = "com.google.android.apps.chrome";
|
||||
private static final String STABLE_PACKAGE = "com.android.chrome";
|
||||
private static final String BETA_PACKAGE = "com.chrome.beta";
|
||||
private static final String DEV_PACKAGE = "com.chrome.dev";
|
||||
private static final String LOCAL_PACKAGE = "com.google.android.apps.chrome";
|
||||
private static final String EXTRA_CUSTOM_TABS_KEEP_ALIVE =
|
||||
"android.support.customtabs.extra.KEEP_ALIVE";
|
||||
private static final String ACTION_CUSTOM_TABS_CONNECTION =
|
||||
|
|
|
@ -30,7 +30,7 @@ public class ParserUtils {
|
|||
}
|
||||
|
||||
// ComposeActivity : EditText inside the onTextChanged
|
||||
public String getPastedURLText(Context context) {
|
||||
public void getPastedURLText(Context context) {
|
||||
ClipboardManager clipboard = (ClipboardManager) context.getSystemService(Context.CLIPBOARD_SERVICE);
|
||||
String pasteData;
|
||||
if (clipboard.hasPrimaryClip()) {
|
||||
|
@ -47,7 +47,6 @@ public class ParserUtils {
|
|||
}
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
public void putInClipboardManager(Context context, String string) {
|
||||
|
|
|
@ -27,8 +27,8 @@ import com.keylesspalace.tusky.util.Assert;
|
|||
|
||||
public class EditTextTyped extends AppCompatMultiAutoCompleteTextView {
|
||||
|
||||
InputConnectionCompat.OnCommitContentListener onCommitContentListener;
|
||||
String[] mimeTypes;
|
||||
private InputConnectionCompat.OnCommitContentListener onCommitContentListener;
|
||||
private String[] mimeTypes;
|
||||
private OnPasteListener onPasteListener;
|
||||
|
||||
public EditTextTyped(Context context) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue