使用 Kotlin Android 扩展以编程方式扩展布局
Programmatically inflated layout with Kotlin Android Extensions
我有以下布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@android:color/white"
android:paddingLeft="20dp"
android:paddingRight="20dp">
<TextView
android:id="@+id/tvErrorTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:textColor="@android:color/background_dark"
android:textSize="18sp"
/>
<TextView
android:id="@+id/tvErrorDesc"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:textColor="@android:color/darker_gray"
android:textSize="16sp"
/>
<TextView
android:id="@+id/tvAction"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:layout_marginBottom="10dp"
android:layout_gravity="end"
android:padding="5dp"
android:textSize="15sp"
android:textStyle="bold"
android:textAllCaps="true"
android:textColor="@android:color/holo_purple"
/>
</LinearLayout>
当我想像下面这样在 activity 之外使用 kotlin android extensions 时,它不起作用。我最终找到了 findViewById。
...
...
import kotlinx.android.synthetic.main.dialog_error.*
...
...
val view = LayoutInflater.from(context).inflate(R.layout.dialog_error, null, false)
val tvErrorTitle = view.findViewById(R.id.tvErrorTitle) as TextView
val tvErrorDesc = view.findViewById(R.id.tvErrorDesc) as TextView
val tvErrorAction = view.findViewById(R.id.tvAction) as TextView
它不会直接从 xml 中提取视图。如何在编程膨胀的布局中使用它并避免 findViewById
?
注 : 本题严格属于Kotlin Android Extensions,不属于语言本身
编辑
我都导入了:
import kotlinx.android.synthetic.main.dialog_error.view.*
import kotlinx.android.synthetic.main.dialog_error.*
但 Android Studio 仍尝试从 R.id 导入,但无法识别这两个导入。有什么遗漏吗?
If we want to call the synthetic properties on View (useful in adapter classes), we should also import
kotlinx.android.synthetic.main.activity_main.view.*.
也就是说,导入 kotlinx.android.synthetic.main.layout.view.*
以及加载 View
扩展属性。
然后:
val view = LayoutInflater.from(context).inflate(...)
view.tvErrorTitle.text = "test"
它returns一个视图膨胀了:
layoutInflater.inflate(R.layout.your_layout, null)
看,当您的 class 从 Context superclass
扩展时,您可以将此 LayoutInflater.from(context)
替换为此 layoutInflater
在 kotlin 中,您可以尝试使用数据绑定在线性布局内膨胀布局
val inflater: LayoutInflater = LayoutInflater.from(activity).context.getSystemService(Context.LAYOUT_INFLATER_SERVICE) as LayoutInflater
val mBindingDeno: LayoutDenominationBinding =
DataBindingUtil.inflate(
inflater, R.layout.layout_denomination, null, false
)
layout.addView(mBindingDeno.root)
这里的布局是你的LinearLayout
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fillViewport="true"
android:nestedScrollingEnabled="true"
android:visibility="gone">
<LinearLayout
android:id="@+id/linear_denomination"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" />
</ScrollView>
我有以下布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@android:color/white"
android:paddingLeft="20dp"
android:paddingRight="20dp">
<TextView
android:id="@+id/tvErrorTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:textColor="@android:color/background_dark"
android:textSize="18sp"
/>
<TextView
android:id="@+id/tvErrorDesc"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:textColor="@android:color/darker_gray"
android:textSize="16sp"
/>
<TextView
android:id="@+id/tvAction"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:layout_marginBottom="10dp"
android:layout_gravity="end"
android:padding="5dp"
android:textSize="15sp"
android:textStyle="bold"
android:textAllCaps="true"
android:textColor="@android:color/holo_purple"
/>
</LinearLayout>
当我想像下面这样在 activity 之外使用 kotlin android extensions 时,它不起作用。我最终找到了 findViewById。
...
...
import kotlinx.android.synthetic.main.dialog_error.*
...
...
val view = LayoutInflater.from(context).inflate(R.layout.dialog_error, null, false)
val tvErrorTitle = view.findViewById(R.id.tvErrorTitle) as TextView
val tvErrorDesc = view.findViewById(R.id.tvErrorDesc) as TextView
val tvErrorAction = view.findViewById(R.id.tvAction) as TextView
它不会直接从 xml 中提取视图。如何在编程膨胀的布局中使用它并避免 findViewById
?
注 : 本题严格属于Kotlin Android Extensions,不属于语言本身
编辑 我都导入了:
import kotlinx.android.synthetic.main.dialog_error.view.*
import kotlinx.android.synthetic.main.dialog_error.*
但 Android Studio 仍尝试从 R.id 导入,但无法识别这两个导入。有什么遗漏吗?
If we want to call the synthetic properties on View (useful in adapter classes), we should also import
kotlinx.android.synthetic.main.activity_main.view.*.
也就是说,导入 kotlinx.android.synthetic.main.layout.view.*
以及加载 View
扩展属性。
然后:
val view = LayoutInflater.from(context).inflate(...)
view.tvErrorTitle.text = "test"
它returns一个视图膨胀了:
layoutInflater.inflate(R.layout.your_layout, null)
看,当您的 class 从 Context superclass
扩展时,您可以将此LayoutInflater.from(context)
替换为此 layoutInflater
在 kotlin 中,您可以尝试使用数据绑定在线性布局内膨胀布局
val inflater: LayoutInflater = LayoutInflater.from(activity).context.getSystemService(Context.LAYOUT_INFLATER_SERVICE) as LayoutInflater
val mBindingDeno: LayoutDenominationBinding =
DataBindingUtil.inflate(
inflater, R.layout.layout_denomination, null, false
)
layout.addView(mBindingDeno.root)
这里的布局是你的LinearLayout
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fillViewport="true"
android:nestedScrollingEnabled="true"
android:visibility="gone">
<LinearLayout
android:id="@+id/linear_denomination"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" />
</ScrollView>