如何从自定义小部件访问主活动的视图?

发布于 12-05 23:39 字数 3273 浏览 0 评论 0原文

我的应用程序的主屏幕上有一个自定义“视图”小部件(CustomController)。

在小部件的构造函数中,我可以使用以下代码访问小部件的 xml 文件中的图像:(

注意,img_cursor 是“custom_controller.xml”中的 ImageView)

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>

如何从 CustomController 类访问 main.xml 中的 TextView?

我尝试过以下操作:

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);

感谢您的帮助!

I have a custom "view" widget (CustomController) on my application's main screen.

In the widget's constructor, I can access an image in the widget's xml file with the following code:

(Note, img_cursor is an ImageView in "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);
...

However, I want to access a TextView on the main activity's screen.
The custom controller widget is displayed on the main screen through 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>

How do I access the TextViews in main.xml from the CustomController class?

I've tried stuff like:

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);
...

I can't seem to access the main screen's view. It doesn't like:

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

Thanks for any help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文