Awesome
Android Toolbox Plugin
Android development speed up plugin for IDEA
Features:
- Generate ViewHolder or ViewPresenter from layout xml
- Generates ButterKnife annotations, if ButterKnife presents in project dependencies
- Optional inheritance from RecyclerView.ViewHolder
Generating ViewHolder/ViewPresenter templates
Suppose we have an android layout file (l_dirty_comment.xml)
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/message_frame"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:id="@+id/frame_body"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<com.shaubert.widget.PatchedTextView
android:id="@+id/message"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<com.shaubert.util.FixedSizeImageView
android:id="@+id/image"
android:layout_width="128dp"
android:layout_height="128dp"/>
<TextView
android:id="@+id/gif_description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</RelativeLayout>
<com.shaubert.widget.PatchedTextView
android:id="@+id/summary"
android:layout_width="wrap_content"/>
</LinearLayout>
</LinearLayout>
Select Android layout file in res/layout*/ folder. Open context menu for it and select "Generate View Presenter…" option:
Select generation pattern:
Choose views:
Select generated class' package:
Modify generated class name:
Browse the result code:
public class DirtyCommentHolder {
private LinearLayout messageFrame;
private PatchedTextView message;
private FixedSizeImageView image;
private PatchedTextView summary;
public DirtyCommentHolder(View view) {
messageFrame = (LinearLayout) view.findViewById(R.id.message_frame);
message = (PatchedTextView) messageFrame.findViewById(R.id.message);
image = (FixedSizeImageView) messageFrame.findViewById(R.id.image);
summary = (PatchedTextView) messageFrame.findViewById(R.id.summary);
}
public LinearLayout getMessageFrame() {
return messageFrame;
}
public PatchedTextView getMessage() {
return message;
}
public FixedSizeImageView getImage() {
return image;
}
public PatchedTextView getSummary() {
return summary;
}
}
For View Presenter Pattern the result code would be:
public class LDirtyCommentPresenter {
private LinearLayout messageFrame;
private PatchedTextView message;
private FixedSizeImageView image;
private PatchedTextView summary;
private View view;
private DirtyBlog data;
public LDirtyCommentPresenter(Context context, ViewGroup parent) {
LayoutInflater inflater = LayoutInflater.from(context);
view = inflater.inflate(R.layout.l_dirty_comment, parent, false);
messageFrame = (LinearLayout) view.findViewById(R.id.message_frame);
message = (PatchedTextView) messageFrame.findViewById(R.id.message);
image = (FixedSizeImageView) messageFrame.findViewById(R.id.image);
summary = (PatchedTextView) messageFrame.findViewById(R.id.summary);
}
public View getView() {
return view;
}
public DirtyBlog getData() {
return data;
}
public void refresh() {
if (data != null) {
view.setVisibility(View.VISIBLE);
} else {
view.setVisibility(View.GONE);
}
}
public void swapData(DirtyBlog data) {
this.data = data;
refresh();
}
}
or fields initialization would be like this, if you use ButterKnife in your project:
public class LDirtyCommentPresenter {
@InjectView(R.id.message_frame)
private LinearLayout messageFrame;
@InjectView(R.id.message)
private PatchedTextView message;
@InjectView(R.id.image)
private FixedSizeImageView image;
@InjectView(R.id.summary)
private PatchedTextView summary;
private View view;
private DirtyBlog data;
public LDirtyCommentPresenter(Context context, ViewGroup parent) {
LayoutInflater inflater = LayoutInflater.from(context);
this.view = inflater.inflate(R.layout.l_dirty_comment, parent, false);
Views.inject(this, view);
}
Licence
Copyright 2013 iDa Mobile.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.