我修改了选项卡式活动示例以创建我自己的一组3个选项卡。每个选项卡都有自己的布局文件,并使用此主题:
<style name="AppTheme" parent="android:Theme.Holo.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
在我将一个EditText添加到其中一个片段布局文件之前,一切都运行良好。然后下次我构建应用程序并在模拟器上运行它时,EditText没有渲染(但是空间留给了它)。然后我尝试添加不同类型的文本字段。他们中的大多数都有同样的效果,但是人名有一个名字&#39;应该在它旁边渲染,但输入框没有再次显示。这是片段布局文件:
<RelativeLayout 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:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.*********.************.MainActivity$FragmentTransmit">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Transmit"
android:id="@+id/textView"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
<Button
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New Button"
android:id="@+id/button"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_below="@+id/textView" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/editText"
android:layout_below="@+id/button"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:clickable="true"/>
总而言之,我使用Holo主题,片段中没有操作栏,一切正常,除非构建应用程序并运行编辑文本时不显示。所以我的问题是为什么没有显示?和如何显示它?
修改:使用Nexus 5X仿真器
Android清单文件:
<?xml version="1.0" encoding="utf-8"?>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
Fragment类:
public static class FragmentTransmit extends Fragment {
private static final String ARG_SECTION_NUMBER = "section_number";
public FragmentTransmit() {
}
public static FragmentTransmit newInstance() {
FragmentTransmit fragment = new FragmentTransmit();
return fragment;
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_transmit, container, false);
return rootView;
}
}