Implemented kotlin quick fix provider for create android resource quick fixes

#KT-10465 Fixed
#KT-12880 Fixed
This commit is contained in:
Vyacheslav Gerasimov
2016-11-03 13:56:02 +03:00
parent 29b9521596
commit 9534934f43
32 changed files with 327 additions and 11 deletions
@@ -0,0 +1,4 @@
import android.app.Activity
import com.myapp.R
fun Activity.getSetMainContentView() = setContentView(R.layout.activity_main)
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
</LinearLayout>
@@ -0,0 +1,2 @@
<resources>
</resources>