gpt4 book ai didi

安卓电视 Leanback

转载 作者:行者123 更新时间:2023-11-29 18:40:51 29 4
gpt4 key购买 nike

layout I am trying to achieve

我是 Android TV 开发的新手。我不知道要使用哪种类型的 fragment 。我想要两个实现布局类似于上面的屏幕截图作为 jiocinema。我以某种方式在 Activity 布局中使用两个 xml fragment 实现了它。第二个 fragment 在点击 API 后加载屏幕截图,因此它会在一段时间后加载。从上面的屏幕截图中可以看出,我想要将布局分为两部分。顶部是详细信息和一些按钮,底部是该电影的屏幕截图列表。

在我的例子中,问题是,底部列表部分在按下向上按钮或任何按钮之后专注于加载这个特定的屏幕,它永远不会失去焦点,也永远不会进入顶部。注意:下面的 fragment 是异步加载的,因为它会点击屏幕截图 url 的 api

可能是我没有为这个特定的布局使用合适的 fragment 。有人可以指出我的代码或帮助我决定使用什么来进行这种布局。虽然可以实现,但导航是主要的。

代码

Activity 布局

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/photo_label_box">
<fragment
android:id="@+id/detail_layout"
android:layout_width="match_parent"
android:name="com.DetailsActivityGame$Detalfragment"
android:layout_height="200dp"></fragment>
<fragment
android:id="@+id/row_layout"
android:layout_width="match_parent"
android:layout_below="@+id/detail_layout"
android:name="com.DetailsActivityGame$SampleFragmentC"
android:layout_height="wrap_content"></fragment>
</RelativeLayout>

谢谢

最佳答案

尝试使用 V4 支持 fragment 中的 RowSupportFragment 以获得所需的输出。

将布局分为按钮、描述和下方滚动布局两部分布局(用RowSupportFragment表示)

//--------------------细节布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/leader_background">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/main_layout"
//your own layout design for buttons and description
</RelativeLayout>
<fragment
android:name="FragmentScreenshots"
android:id="@+id/screenshot_fragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>

//----------------细节 fragment --------------------

public static class Detailfragment extends Fragment {
public Detailfragment(){ }

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
final View view = inflater.inflate(R.layout.detail_layout, container, false);
//————————your own implementation—————————————————————————
return view;
}
public static class FragmentScreenshots extends RowsSupportFragment {
private ArrayObjectAdapter mRowsAdapter = null;
public FragmentScreenshots() {
mRowsAdapter = new ArrayObjectAdapter(new ShadowRowPresenterSelector());
setAdapter(mRowsAdapter);
}

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//———————Provide data accordinally———————————
List<ScreenshotItem> list;

// Add a Related items row
ArrayObjectAdapter listRowAdapter = new ArrayObjectAdapter(
new ScreenshotCardPresenter(getActivity()));
for (ScreenshotItem s:list)
{
listRowAdapter.add(s);
}
HeaderItem header = new HeaderItem("Screenshots");
mRowsAdapter.add(new ListRow(header, listRowAdapter));
setAdapter(mRowsAdapter);

setOnItemViewClickedListener(new OnItemViewClickedListener() {
@Override
public void onItemClicked(Presenter.ViewHolder itemViewHolder, Object item, RowPresenter.ViewHolder rowViewHolder, Row row) {
if (item instanceof ScreenshotItem) {
}
else{
}
}
});

setOnItemViewSelectedListener(new OnItemViewSelectedListener() {
@Override
public void onItemSelected(Presenter.ViewHolder itemViewHolder, Object item, RowPresenter.ViewHolder rowViewHolder, Row row) {

}
});
}

@Override
public void setExpand(boolean expand) {
super.setExpand(true);
}

@Override
public void setOnItemViewClickedListener(BaseOnItemViewClickedListener listener) {
super.setOnItemViewClickedListener(listener);
}

@Override
public void setOnItemViewSelectedListener(BaseOnItemViewSelectedListener listener) {
super.setOnItemViewSelectedListener(listener);
}
}}

关于安卓电视 Leanback,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53116488/

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