gpt4 book ai didi

Android Tab教程问题

转载 作者:行者123 更新时间:2023-11-29 00:50:22 25 4
gpt4 key购买 nike

问题解决了!!

我通过调试器反复查看后才发现我的错误,但无论如何,谢谢大家!!

您好,我是 Android 的新手,正在学习一些教程。现在我陷入了 Tab 教程。代码乍一看似乎没问题,因为我没有收到任何错误,但是当我尝试在模拟器上运行该应用程序时,它总是崩溃,并且我收到“应用程序意外停止”错误消息。

我已经尝试过关于 tab layout problem 的讨论中所说的内容,但我所做的更改对错误没有帮助。如果有人可以帮助我,那就太好了。如果您想查看代码,请告诉我是否应该发布或发送它。

提前谢谢你。

这是我为 Manifest.xml 文件编写的代码,因为我不确定我是否在那里做错了什么:

   <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mobilevideoeditor.moved"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".GalleryView" android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<activity android:name=".ShareGalleryView" android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar"> </activity>
<activity android:name=".EditGalleryView" android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar"> </activity>
</activity>
</application>
</manifest>

这是 GalleryView.java 文件:

package com.mobilevideoeditor.moved;

import android.app.TabActivity;
import android.content.Intent;
import android.content.res.Resources;
import android.os.Bundle;
import android.widget.TabHost;

public class GalleryView extends TabActivity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

Resources res = getResources(); // Resource object to get Drawables
TabHost tabHost = getTabHost(); // The activity TabHost
TabHost.TabSpec spec; // Reusable TabSpec for each tab
Intent intent; // Reusable Intent for each tab

// Create an Intent to launch an Activity for the tab (to be reused)
intent = new Intent().setClass(this, EditGalleryView.class);

// Initialize a TabSpec for each tab and add it to the TabHost
spec = tabHost.newTabSpec("edit").setIndicator("Edit",
res.getDrawable(R.drawable.ic_tab_edit))
.setContent(intent);
tabHost.addTab(spec);

// Do the same for the other tabs
intent = new Intent().setClass(this, ShareGalleryView.class);
spec = tabHost.newTabSpec("share").setIndicator("Share",
res.getDrawable(R.drawable.ic_tab_share))
.setContent(intent);
tabHost.addTab(spec);

tabHost.setCurrentTab(0);
}
}

这是 ma​​in.xml 的代码:

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp" />
</LinearLayout>

EditGalleryView.javaShareGalleryView.java 的代码:

package com.mobilevideoeditor.moved;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;


public class ShareGalleryView extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

TextView textview = new TextView(this);
textview.setText("This is the Share tab!");
setContentView(textview);
}
}

最后是 ic_tab_share.xmlic_tab_edit.xml 的代码:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- When selected, use ic_tab_share (grey icon) -->
<item android:drawable="@drawable/ic_tab_share"
android:state_selected="true" />
<!-- When not selected, use ic_tab_share_unselected (white icon)-->
<item android:drawable="@drawable/ic_tab_share_unselected" />
</selector>

再次感谢:)

最佳答案

我有一个 similar problem当我第一次尝试官方开发者网站上的选项卡布局教程时。

由于您在运行应用程序时收到“强制关闭”错误,这很可能是由于未在 AndroidManifest.xml 文件中添加 Activity 。

关于Android Tab教程问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3240133/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com