Refactoring: rename android-idea-plugin to android-extensions-idea

This commit is contained in:
Natalia Ukhorskaya
2016-03-11 16:01:33 +03:00
parent 7e6fa8ef17
commit bf4c92d903
109 changed files with 53 additions and 53 deletions
@@ -0,0 +1,10 @@
package com.myapp
import android.view.View
import kotlinx.android.synthetic.main.layout.view.*
fun View.a() {
val button = this.login<caret>
}
// EXIST: login
@@ -0,0 +1,17 @@
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/item_detail_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ItemDetailActivity"
tools:ignore="MergeRootFrame" >
<Button
android:id="@+id/login"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Sign in" />
</FrameLayout>