I am adopting the @InjectView
theme throughout my project and have a minor issue when it comes to condensing these declarations. After I put in the initial code it looks great in one line like this..
@InjectView(R.id.tv_report_summary_name) TextView tvReportSummaryName;
However if I do an auto format (Ctrl + Shift + F), Android Studio is automatically replacing this with two lines so it looks like:
@InjectView(R.id.tv_report_summary_name)
TextView tvReportSummaryName;
Is there a way to avoid this or modify my formatting options to make this not happen? Any help is greatly appreciated.