我的自定义视图布局如下:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:focusable="true"
android:focusableInTouchMode="true" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/imageView1"
android:layout_marginLeft="30dp"
android:layout_toRightOf="@+id/imageView1"
android:text="Username"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textStyle="bold" />
.....
然后我想从这个 xml 文件中获取 ViewGroup。但是我知道的方式只是像这样使用 View Inflater 为布局充气,LayoutInflater.inflate(R.id.my_layout)
而回报只是View
而且我的布局绝对RelativeLayout
是 extends ViewGroup
。
如何以编程方式将 My Relativelayout 作为 ViewGroup?