以编程方式创建UI时appcompat-v7:22.0.0主题问题

时间:2015-03-28 23:25:16

标签: android android-appcompat

更新到appcompat-v7:22后,我遇到了严重的主题问题。 appcompat-v7:21

不会出现下面描述的问题

我有一个静态添加片段的活动。片段视图仅以编程方式创建(没有布局膨胀)。最终活动视图包含2个按钮:一个直接在Activity布局中创建,另一个通过Fragment以编程方式添加。 第二个按钮看起来与第一个按钮类似,因为没有分配自定义样式或属性值:

enter image description here

应用主题扩展Theme.AppCompat.NoActionBar

活动布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity">

    <Button
        android:text="Super Button"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

    <fragment
        android:id="@+id/myfragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:name="com.jskierbi.appcompat22test.MainFragment" />

</LinearLayout>

片段类:

public class MainFragment extends Fragment {

    @Nullable @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        LinearLayout layout = new LinearLayout(getActivity());
        layout.setOrientation(LinearLayout.VERTICAL);
        Button btn = new Button(getActivity());
        btn.setText("Click me!");
        layout.addView(btn);
        return layout;
    }
}

我已将此问题分离到新项目:https://github.com/jskierbi/appcompat-v7-22-bug

这是一个错误还是我错过了什么? 是否可以为此制定解决方法?

修改

这不是错误。布局中定义的<Button>窗口小部件会在视图层次结构中膨胀为TintButton对象。可能的解决方法是在代码中创建TintButton而不是Button。 警告 TintButton位于内部包中,因此不应在生产代码中使用。

2 个答案:

答案 0 :(得分:1)

据我所知,v21不支持自动样式按钮和材料指南。我现在假设在运行时创建的按钮没有样式,是的,可能被视为错误。

我想到的可能的解决方法(现在无法测试)是调用,而不是new Button()new TintButton(),其中TintButton是支持库中定义的类,假设为是Button的材料风格版本。

我认为它应该是android.support.v7.internal.widget.TintButton

答案 1 :(得分:1)

问题已于4月22日使用appcompat rev 22.1修复。现在您可以使用普通按钮或新的AppCompatButton See here