Как получить доступ к виду основной активности из пользовательского виджета? - PullRequest
1 голос
/ 23 сентября 2011

У меня есть собственный виджет просмотра (CustomController) на главном экране моего приложения.

В конструкторе виджета я могу получить доступ к изображению в xml-файле виджета со следующим кодом:

(Обратите внимание, img_cursor - это ImageView в "custom_controller.xml")

public final class CustomController extends LinearLayout{
    public CustomController(Context context, AttributeSet attrs) {
        super(context, attrs);

        LayoutInflater layoutInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        View view_controller = layoutInflater.inflate(R.layout.custom_controller,this);

        img_cursor = (ImageView) view_dpad.findViewById(R.id.img_cursor);
...

Однако я хочу получить доступ к TextView на экране основного занятия. Пользовательский виджет контроллера отображается на главном экране через main.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:id="@+id/linlayRoot"
android:layout_width="match_parent" 
android:layout_height="match_parent"
android:orientation="vertical">
        <com.test.projectname.CustomController
        android:id="@+id/dpad"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:layout_marginRight="15px"
        android:layout_marginLeft="15px" /> 
        <Button 
        android:text="Connect" 
        android:id="@+id/btn_connection"
        android:layout_height="wrap_content" 
        android:layout_width="100dp">
        </Button>
        <Button 
        android:text="Settings" 
        android:id="@+id/btn_settings" 
        android:layout_height="wrap_content"
        android:layout_width="wrap_content">
        </Button>
        <Button 
        android:text="Debug x,y" 
        android:layout_width="wrap_content"
        android:id="@+id/btn_debug_x_y" 
        android:layout_height="wrap_content">
        </Button>
        <TextView
            android:id="@+id/txt_view_x" 
            android:layout_marginLeft="20dp"
            android:textAppearance="?android:attr/textAppearanceLarge" 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:text="X = 0">
        </TextView>
        <TextView 
            android:id="@+id/txt_view_y"
            android:layout_marginLeft="20dp"
            android:textAppearance="?android:attr/textAppearanceLarge" 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:text="Y = 0">
        </TextView>
</LinearLayout>

Как получить доступ к TextViews в main.xml из класса CustomController?

Я пробовал что-то вроде:

public final class CustomController extends LinearLayout{
    public CustomController(Context context, AttributeSet attrs) {
        super(context, attrs);

        LayoutInflater layoutInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        View main_controller = layoutInflater.inflate(R.layout.main,this);

        textview = (TextView) view_dpad.findViewById(R.id.txt_view_x);
...

Я не могу получить доступ к главному экрану. Не нравится:

View main_controller = layoutInflater.inflate(R.layout.main,this);

Спасибо за любую помощь!

...