需要有关 ActionBar 和 Fragmentation 的帮助

发布于 2024-12-19 18:57:46 字数 1385 浏览 0 评论 0原文

我正在使用actionbarsherlock库在我的应用程序中添加操作栏,

我还使用view-pager在页面之间切换,

现在的问题是我只想一个带有两个片段的选项卡来显示有关的数据彼此。

可能的方法是什么?

我一直在经历像下面的那样,但不成功

在主要片段中,我正在膨胀一个像这样的xml,

<code>
@Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {

        View fragView = inflater.inflate(R.layout.album_view_main, container, false);

        return fragView;
    }
</code>

xml fie看起来像这样,

<code>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="horizontal" >

    <fragment
        android:id="@+id/fragment_album_view"
        android:layout_width="0px"
        android:layout_height="fill_parent"
        android:layout_weight="3"
        class="com.nix.music.activity.fragments.AlbumFragMent" />

    <FrameLayout
        android:id="@+id/frame_list_song"
        android:layout_width="0px"
        android:layout_height="fill_parent"
        android:layout_weight="2" >
    </FrameLayout>
</LinearLayout>
</code>

但问题是我在AlbumFragment类中找不到“frame_list_song”,它看起来为空,

可能是什么方法?

谢谢

I am using actionbarsherlock library to have action-bar in my application,

I am also using view-pager to switch between the page,

Now the problem is i want only one tab with two fragment to display data regarding each other.

What could be the possible way to do this?

I have been going through like the one below but unsuccessful

In main fragment i am inflating a xml like this

<code>
@Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {

        View fragView = inflater.inflate(R.layout.album_view_main, container, false);

        return fragView;
    }
</code>

xml fie is look like this

<code>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="horizontal" >

    <fragment
        android:id="@+id/fragment_album_view"
        android:layout_width="0px"
        android:layout_height="fill_parent"
        android:layout_weight="3"
        class="com.nix.music.activity.fragments.AlbumFragMent" />

    <FrameLayout
        android:id="@+id/frame_list_song"
        android:layout_width="0px"
        android:layout_height="fill_parent"
        android:layout_weight="2" >
    </FrameLayout>
</LinearLayout>
</code>

but the problem is i cannot find "frame_list_song" in AlbumFragment class it appears null

what could be the way around ?

thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

痴情换悲伤 2024-12-26 18:57:46

此布局应使用 setContentView() 在父 activity 中设置。然后,您就可以从 AlbumFragment 执行 getActivity().findViewById(R.id.frame_list_song) 之类的操作。更好的方法是使用接口并将控制权转移到主活动,而不是直接访问其他片段。

This layout should be set in the parent activity using setContentView(). Then, you would be able to do something like getActivity().findViewById(R.id.frame_list_song) from your AlbumFragment. The better way would be to use an interface and transfer control to the main activity, and not access other fragments directly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文