java - 如何在android中正确地重用模板/xml

标签 java android xml dynamic templating

在您将我标记为重复并开始投反对票之前,请知道我正在竭尽全力让此功能运行近 3 个小时。我尝试了四种不同的方法,我在文档和各种论坛主题中阅读了相关内容。

我在独立的 xml 文件中定义了 Button,如下所示:

<!--button_template.xml-->
<Button
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/score_question_btn"
    android:onClick="viewScore"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="16dp"
    android:layout_marginLeft="16dp"
    android:layout_marginRight="16dp"
    android:padding="24dp" />

我想用它来动态填充 View 。

到目前为止我已经尝试过:

  • context.findViewById(R.id.button_id); 这不起作用,因为该按钮不是当前上下文 Root View 的 subview ,因此返回 null
  • LayoutInflator -> inflate(R.layout.button_template.xml, rootView, false); 我不能使用这个,因为我需要设置不同的文本和特定按钮的背景颜色。
  • 使用样式资源的自定义,定义边距,但我找不到设置按钮样式的方法
  • Button button = new Button(context) 简而言之,我无法让它工作。我创建了Button,我可以轻松设置文本和颜色,但是还有一个边距的问题。

经过半个小时的尝试,在 Button 上放置了奇怪的margin,我想出了这个:

LinearLayout.LayoutParams params = 
         new LinearLayout.LayoutParams(
                 LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);
int dpMargin = 16;
float d = context.getResources().getDisplayMetrics().density;
int marginInPixels = (int) (dpMargin * d);
params.setMargins(marginInPixels, marginInPixels, marginInPixels, 0);

但我不知道它是否有效,因为这一直使我的项目崩溃。它执行一次,崩溃,然后我无法启动我的项目,因为它找不到我的 MainActivity 类。我也花了一个小时来追踪这一点。我想出的唯一解决方法是将我的 src 文件夹复制到新项目。

那么问题来了:我走在正确的道路上吗?如果是这样我做错了什么?如果不是 - 经验丰富的 Android 开发人员将如何解决这个模板问题。

最佳答案

我会扩展按钮类..

这是一个例子

MyReusableButton.java

package com.example.test;

import android.content.Context;
import android.graphics.Color;
import android.util.AttributeSet;
import android.widget.Button;
import android.widget.LinearLayout;

public class MyReusableButton extends Button {

    //use this constructor for button creation from java code
    public MyReusableButton(Context context) {
        super(context);
        init();
    }

    //this is needed for XML inflation
    public MyReusableButton(Context context, AttributeSet attrs) {
        super(context, attrs);
        init();
    }

    //set button style
    private void init() {
        setBackgroundColor(Color.RED);
        setTextColor(Color.WHITE);
    }

    //helper to set margins
    public void setMargins(int left, int top, int right, int bottom) {
        LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(
                LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT);
        params.setMargins(left, top, right, bottom);
        this.setLayoutParams(params);
    }
}

MainActivity.java

package com.example.test;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.LinearLayout;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        //use this to create a button in code
        MyReusableButton b = new MyReusableButton(this);
        b.setText("Hello, World");

        //use this to add margins to the button
        b.setMargins(10, 10, 10, 10);

        //add the button to the parent linear layout
        ((LinearLayout) findViewById(R.id.wrapper)).addView(b);
    }
}

activity_main.xml

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

    <!-- We can also define a button in XML -->
    <com.example.test.MyReusableButton
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:text="Test2"
        />
</LinearLayout>

此代码的结果是 2 个按钮,一个来自 XML,另一个以编程方式创建。 init() 方法为我们提供了每个按钮所需的样式。

我还包含了一个辅助方法来设置边距,以便将来节省代码。

关于java - 如何在android中正确地重用模板/xml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43381278/

相关文章:

android - 如何在弹出键盘时保持全屏

XML解析错误: not well-formed (invalid token)

java - Android Studio 中单选按钮 onClick() 的替代选项

java - spring mvc 对象时间戳绑定(bind)中的字段错误

android - 铃声模式更改监听器广播接收器?

java - Spring 按名称构造函数参数 Autowiring

Android 布局设计 ldpi 或 sw

xml - cURL - 在接收器上获取部分数据(400 错误请求)

java - 在 JPanel 中放置 JLabel

java - 我可以在一个 jar 文件中合并多个 jar 文件吗