使用appcompat v7时Android应用程序崩溃

时间:2015-08-26 10:35:46

标签: android android-studio android-appcompat

我对android很新。 我试图在android管理器中实现google play样式选项卡应用程序。 我按照这个指南: https://github.com/codepath/android_guides/wiki/Google-Play-Style-Tabs-using-TabLayout

然而,当我在模拟器或目标上运行应用程序时,它会在加载时崩溃。

你能帮帮我吗?

2 个答案:

答案 0 :(得分:0)

知道了!

忘了查看logcat。 我检查过它,结果发现我试图将线性布局转换为文本视图。 删除了该代码,该代码来自我发布的指南。

您知道该示例如何将布局转换为textview还是错误?

View view = inflater.inflate(R.layout.fragment_page, container, false);
    TextView textView = (TextView) view;
    textView.setText("Fragment #" + mPage);
    return view;

答案 1 :(得分:0)

使用指南检查 res / layout / fragment_page.xml :原始版本中没有LinearLayout。