1

我的自定义视图布局如下:

<?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?

4

2 回答 2

2

在将类型转换为相对布局之后。在android中,每个布局都是视图,它是所有视图和视图组的超类..

你必须像这样打字..

convertView = inflater.inflate(R.layout.header, null);
RelativeLayout lyLayout=(RelativeLayout) convertView;
于 2013-09-24T10:35:32.713 回答
2

试试这个。这是 android 中自定义 toast 的示例

public void showToast(Context context, String message) {
    // get your custom_toast.xml layout
    LayoutInflater inflater = getLayoutInflater();

    View layout = inflater.inflate(R.layout.toast_activity,
            (ViewGroup) findViewById(R.id.custom_toast_layout_id));
    // set a message
    TextView text = (TextView) layout.findViewById(R.id.ToastMessageTV);
    text.setText(message);
    // Toast...
    Toast toast = new Toast(context);
    // toast.setGravity(Gravity.CENTER_VERTICAL, 0, 0);
    toast.setDuration(Toast.LENGTH_SHORT);
    toast.setView(layout);
    toast.show();
}
于 2013-09-24T10:38:41.323 回答