我几天前开始学习编写Android应用程序,我总是通过观看youtube视频或在此处搜索此网站来找到答案。但是我甚至找不到以下问题。
在班级data = json.loads(json_str.replace("\n","").replace("\t","").replace(" ",""))
中,我正在开始/加载片段(Navigation
)。它工作得很好,但我总是在后台有一个旋转的进度条(看图像),所以在文本和按钮后面(但你仍然可以看到它......)。我想知道的是,我从来没有创建过这个进度条,只有这一个Activity我有这个问题。
Navigation.java
Fragement_trupp1
activity_navigation.xml
public class Navigation extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_navigation);
ActionBar myActionBar = getSupportActionBar();
myActionBar.setTitle("trupp I");
FragmentManager fragmentManager = getFragmentManager();
FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
Fragement_trupp1 fragment = new Fragement_trupp1();
fragmentTransaction.add(R.id.id_fragment_navigation, fragment);
fragmentTransaction.commit();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater menuInflater = getMenuInflater();
menuInflater.inflate(R.menu.menu_navigation, menu);
return super.onCreateOptionsMenu(menu);
}}
进度条旋转的图像。需要10个声誉才能直接发布:O
错误必须与调用 <LinearLayout
android:layout_width="0dp"
android:layout_height="0dp"
android:orientation="vertical"
app:layout_constraintTop_toTopOf="parent"
android:layout_marginTop="0dp"
android:layout_marginRight="0dp"
app:layout_constraintRight_toRightOf="parent"
android:layout_marginLeft="0dp"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_marginBottom="0dp">
<fragment
android:id="@+id/id_fragment_navigation"
android:name="android.support.v4.app.ListFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout="@layout/fragment_trupp1" />
</LinearLayout>
中的片段有关,因为如果我删除了这部分并且xml文件中的Fragement-part我没有问题。顺便说一句,我正在使用API lvl 24!
感谢您的帮助!
答案 0 :(得分:0)
使用此布局
<LinearLayout
android:layout_width="0dp"
android:layout_height="0dp"
android:orientation="vertical"
app:layout_constraintTop_toTopOf="parent"
android:layout_marginTop="0dp"
android:layout_marginRight="0dp"
app:layout_constraintRight_toRightOf="parent"
android:layout_marginLeft="0dp"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_marginBottom="0dp">
<FrameLayout
android:id="@+id/id_fragment_navigation"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</LinearLayout>
动态添加片段,无需在布局中声明片段。 请选择其中一种方法。
希望有所帮助