加载布局后如何知道视图元素?
How to know the View Elements after loading a layout?
我正在尝试编写代码,在加载布局后,我想知道哪些视图元素与布局相关,例如 TextView、EditText、Checkbox 等。
我的代码:
MainActivity.java
package com.example.myview;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentTransaction;
import android.support.v7.app.ActionBarActivity;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
public class MainActivity extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
View view = LayoutInflater.from(this).inflate(R.layout.demo_layout, null);
// How to get to know about the UI Elements related to this layout //
}
}
demo_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/lnr"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ddccee"
android:orientation="vertical">
<TextView
android:id="@+id/txt1"
android:layout_width="match_parent"
android:layout_height="300dp"
android:textSize="15dp"
android:textColor="#ffffff"
android:text="Test Layout"
android:layout_gravity="center"
android:gravity="center"/>
<EditText
android:id="@+id/edit1"
android:layout_width="match_parent"
android:layout_height="300dp"
android:textSize="15dp"
android:textColor="#ffffff"
android:text="Test Layout"
android:layout_gravity="center"
android:gravity="center"/>
<TextView
android:id="@+id/txt2"
android:layout_width="match_parent"
android:layout_height="300dp"
android:textSize="15dp"
android:textColor="#ffffff"
android:text="Test Layout"
android:layout_gravity="center"
android:gravity="center"/>
</LinearLayout>
此布局有 TextView 和 EditText,因此,我想知道如何以编程方式获取与此布局相关的 UI 元素。
所以,请给我一些解决方案。
您可以使用 getChildCount
REF to get the count of views added toViewGroup
and then use getChildAt
REF 获取给定索引处的 View
。
您正在使用 LinearLayout
作为基本布局,它已经扩展了 ViewGroup
只需更改下面的行。
LinearLayout view = (LinearLayout)LayoutInflater.from(this).inflate(R.layout.demo_layout, null);
在你为你的 demo_layout
充气后,只需像这样在你的 view
实例上调用 findViewById
:
View view = LayoutInflater.from(this).inflate(R.layout.demo_layout, null);
TextView txt1 = (TextView) view.findViewById(R.id.txt1);
view
的元素必须由 view.findViewById()
检索。
除了在 activity 中,您直接使用 findViewById() 来检索您在 setContentView()
中设置的 contentView 的视图元素。
我正在尝试编写代码,在加载布局后,我想知道哪些视图元素与布局相关,例如 TextView、EditText、Checkbox 等。
我的代码:
MainActivity.java
package com.example.myview;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentTransaction;
import android.support.v7.app.ActionBarActivity;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
public class MainActivity extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
View view = LayoutInflater.from(this).inflate(R.layout.demo_layout, null);
// How to get to know about the UI Elements related to this layout //
}
}
demo_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/lnr"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ddccee"
android:orientation="vertical">
<TextView
android:id="@+id/txt1"
android:layout_width="match_parent"
android:layout_height="300dp"
android:textSize="15dp"
android:textColor="#ffffff"
android:text="Test Layout"
android:layout_gravity="center"
android:gravity="center"/>
<EditText
android:id="@+id/edit1"
android:layout_width="match_parent"
android:layout_height="300dp"
android:textSize="15dp"
android:textColor="#ffffff"
android:text="Test Layout"
android:layout_gravity="center"
android:gravity="center"/>
<TextView
android:id="@+id/txt2"
android:layout_width="match_parent"
android:layout_height="300dp"
android:textSize="15dp"
android:textColor="#ffffff"
android:text="Test Layout"
android:layout_gravity="center"
android:gravity="center"/>
</LinearLayout>
此布局有 TextView 和 EditText,因此,我想知道如何以编程方式获取与此布局相关的 UI 元素。
所以,请给我一些解决方案。
您可以使用 getChildCount
REF to get the count of views added toViewGroup
and then use getChildAt
REF 获取给定索引处的 View
。
您正在使用 LinearLayout
作为基本布局,它已经扩展了 ViewGroup
只需更改下面的行。
LinearLayout view = (LinearLayout)LayoutInflater.from(this).inflate(R.layout.demo_layout, null);
在你为你的 demo_layout
充气后,只需像这样在你的 view
实例上调用 findViewById
:
View view = LayoutInflater.from(this).inflate(R.layout.demo_layout, null);
TextView txt1 = (TextView) view.findViewById(R.id.txt1);
view
的元素必须由 view.findViewById()
检索。
除了在 activity 中,您直接使用 findViewById() 来检索您在 setContentView()
中设置的 contentView 的视图元素。