программная настройка пользовательских элементов макета XML - PullRequest
2 голосов
/ 21 сентября 2011

В моем коде у меня есть заголовок класса 'CustomView', который имеет два поля TextView и расширяет относительную компоновку. Один экземпляр CustomView раздувает сам себя с помощью XML-макета с именем «custom_view_layout», который отображает два текстовых поля, также при создании эти два текстовых представления приравниваются к текстовым представлениям CustomView.

В моем «основном» XML-файле макета у меня есть пользовательский тег для «CustomView», как вы можете видеть из xml, у этого тега есть некоторые параметры макета. То, что я хочу, это программно создать экземпляр CustomView, заполнить его текстовое представление, а затем «установить» настраиваемое представление в моем основном файле макета xml в это экземплярное представление. Я хотел бы сделать это способом, более приятным, чем передача параметров макета тегов cusomview в мой экземпляр CustomView и затем замена моего пользовательского тега представления на экземпляр Custom View.

В своем коде я закомментировал две неудачные попытки сделать это. Любые предложения будут наиболее признательны.

Класс пользовательского просмотра:

package com.customviewsetexample;

import android.content.Context;
import android.util.AttributeSet;
import android.widget.ImageView;
import android.widget.RelativeLayout;
import android.widget.TextView;

public class CustomView extends RelativeLayout {

    TextView textView1;
    TextView textView2;

    public CustomView(Context context) {
        super(context);
        initView(context);
        this.textView1 = (TextView)this.findViewById(R.id.textView1);
        this.textView2 = (TextView)this.findViewById(R.id.textView2);

    }

    public CustomView(Context context, AttributeSet attrs) {
        super(context, attrs);
        initView(context);
        this.textView1 = (TextView)this.findViewById(R.id.textView1);
        this.textView2 = (TextView)this.findViewById(R.id.textView2);
    }

    private void initView(Context context){
        this.inflate(context, R.layout.custom_view_layout, this);
    }

    public void populateCustomView(String string_1, String string_2){
        System.out.println("Started");
        this.textView1.setText(string_1);
        System.out.println("mid");
        this.textView2.setText(string_2);
        System.out.println("end");
    }

}

Мои занятия с двумя попытками прокомментированы:

package com.customviewsetexample;

import android.app.Activity;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.widget.ImageView;
import android.widget.RelativeLayout;
import android.widget.TextView;

public class CustomViewSetExampleActivity extends Activity {
    /** Called when the activity is first created. */

    String string_1;
    String string_2;
    CustomView customView;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        String string_1 = "String 1";
        String string_2 = "String 2";
        customView = new CustomView(this);
        customView.populateCustomView(string_1, string_2);
        CustomView mainCustomView = (CustomView)findViewById(R.id.mainCustomView);

        /*
         //This Does nothing
        mainCustomView = customView;
         */

        /*
       //Throws Error see below
       mainCustomView.updateViewLayout(customView, mainCustomView.getLayoutParams());
        */
    }
}

main.xml

<?xml version="1.0" encoding="utf-8"?>
<com.customviewsetexample.CustomView     xmlns:android="http://schemas.android.com/apk/res/android"       
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:id="@+id/mainCustomView"
    >

custom_view_layout.xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">
    <TextView android:text="TextView" android:layout_height="wrap_content"    android:id="@+id/textView1" android:layout_width="wrap_content"    android:layout_alignParentTop="true" android:layout_alignParentLeft="true"></TextView>
    <TextView android:text="TextView" android:layout_height="wrap_content"     android:id="@+id/textView2" android:layout_width="wrap_content"    android:layout_alignParentTop="true" android:layout_toRightOf="@+id/textView1"></TextView>

Сообщение об ошибке при попытке обновления:

09-21 01:02:40.121: ERROR/AndroidRuntime(1592): Uncaught handler: thread main exiting due to uncaught exception
09-21 01:02:40.130: ERROR/AndroidRuntime(1592): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.customviewsetexample/com.customviewsetexample.CustomViewSetExampleActivity}: java.lang.IllegalArgumentException: Invalid LayoutParams supplied to com.customviewsetexample.CustomView@43762b20
09-21 01:02:40.130: ERROR/AndroidRuntime(1592):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2401)
09-21 01:02:40.130: ERROR/AndroidRuntime(1592):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2417)
09-21 01:02:40.130: ERROR/AndroidRuntime(1592):     at android.app.ActivityThread.access$2100(ActivityThread.java:116)
09-21 01:02:40.130: ERROR/AndroidRuntime(1592):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1794)
09-21 01:02:40.130: ERROR/AndroidRuntime(1592):     at android.os.Handler.dispatchMessage(Handler.java:99)
09-21 01:02:40.130: ERROR/AndroidRuntime(1592):     at android.os.Looper.loop(Looper.java:123)
09-21 01:02:40.130: ERROR/AndroidRuntime(1592):     at android.app.ActivityThread.main(ActivityThread.java:4203)
09-21 01:02:40.130: ERROR/AndroidRuntime(1592):     at java.lang.reflect.Method.invokeNative(Native Method)
09-21 01:02:40.130: ERROR/AndroidRuntime(1592):     at java.lang.reflect.Method.invoke(Method.java:521)
09-21 01:02:40.130: ERROR/AndroidRuntime(1592):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:791)
09-21 01:02:40.130: ERROR/AndroidRuntime(1592):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:549)
09-21 01:02:40.130: ERROR/AndroidRuntime(1592):     at dalvik.system.NativeStart.main(Native Method)
09-21 01:02:40.130: ERROR/AndroidRuntime(1592): Caused by: java.lang.IllegalArgumentException: Invalid LayoutParams supplied to com.customviewsetexample.CustomView@43762b20
09-21 01:02:40.130: ERROR/AndroidRuntime(1592):     at android.view.ViewGroup.updateViewLayout(ViewGroup.java:1759)
09-21 01:02:40.130: ERROR/AndroidRuntime(1592):     at com.customviewsetexample.CustomViewSetExampleActivity.onCreate(CustomViewSetExampleActivity.java:34)
09-21 01:02:40.130: ERROR/AndroidRuntime(1592):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1123)
09-21 01:02:40.130: ERROR/AndroidRuntime(1592):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2364)
09-21 01:02:40.130: ERROR/AndroidRuntime(1592):     ... 11 more

1 Ответ

0 голосов
/ 21 сентября 2011

В вашем классе CustomView в точке, где вы пытаетесь раздувать представление, сначала вам необходимо зарегистрироваться в службе раздувания Layout.

Передайте правильный контекст конструктору вашего класса, затем используйте переданный контекст, чтобы зарегистрироваться для надувания, а затем надувать.

Попробуйте что-то вроде:

      private void initView(Context context){
        LayoutInflater infl = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
 View temp = infl.inflate(R.layout.test, null); //contains your entire xml ofcourse
        }

Когда вы пытаетесь установить свой пользовательский вид для основного xml, вы можете сделать это быстро, например, накачать основной xml, а затем использовать .addView(customview), вы можете сделать это прямо перед тем, как setContentView(), если это не так. против ваших требований или потока.

Здесь нужно многое переделать.

...