- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在我正在创建的信息应用程序的一个 fragment 中流式传输视频。当我创建图像按钮来控制视频时,findViewById
在 btnPlayPause = (ImageButton)findViewById(R.id.play_pause_button);< 行上给出了“无法解析符号”错误
,但是它可以在同一 fragment 中找到视频 View 。这是我的 MainActivity.java
中的 onCreate
方法:
public class MainActivity extends AppCompatActivity implements
NavigationView.OnNavigationItemSelectedListener{
private DrawerLayout drawer;
ProgressDialog mDialog;
VideoView videoView;
ImageButton btnPlayPause;
String videoURL = "https://vimeo.com/284762179";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
drawer = findViewById(R.id.drawer_layout);
NavigationView navigationView = findViewById(R.id.nav_view);
navigationView.setNavigationItemSelectedListener(this);
ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(this, drawer,
toolbar,
R.string.navigation_drawer_open,
R.string.navigation_drawer_close);
drawer.addDrawerListener(toggle);
toggle.syncState();
if (savedInstanceState == null { getSupportFragmentManager()
.beginTransaction().replace(R.id.fragment_containter,
new InformationFragment()).commit();
navigationView.setCheckedItem(R.id.nav_information);
}
videoView = (VideoView)findViewById(R.id.hypori_video);
btnPlayPause = (ImageButton)findViewById(R.id.play_pause_button);
btnPlayPause.setOnClickListener(this);
}
@Override
public void onClick(View v){
mDialog = new ProgressDialog(MainActivity.this);
mDialog.setMessage("Please wait...");
mDialog.setCanceledOnTouchOutside(false);
mDialog.show();
try {
if (!videoView.isPlaying()) {
Uri uri = Uri.parse(videoURL);
videoView.setVideoURI(uri);
videoView.setOnCompletionListener(new
MediaPlayer.OnCompletionListener() {
@Override
public void onCompletion(MediaPlayer mp) {
btnPlayPause.setImageResource(R.drawable.ic_play_arrow);
}
});
}
else
{
videoView.pause();
btnPlayPause.setImageResource(R.drawable.ic_play_arrow);
}
}
catch (Exception e)
{
}
videoView.requestFocus();
videoView.setOnPreparedListener(new MediaPlayer.OnPreparedListener() {
@Override
public void onPrepared(MediaPlayer mp) {
mDialog.dismiss();
mp.setLooping(false);
videoView.start();
btnPlayPause.setImageResource(R.drawable.ic_pause);
}
});
}
这是我的包含 VideoView 和 ImageButton 的 fragment 的 XML:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/background_light">
<TextView
android:id="@+id/the_hypori_solution"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:background="#b41518"
android:padding="10dp"
android:text="@string/the_hypori_solution"
android:textAlignment="center"
android:textColor="@android:color/background_light"
android:textSize="30sp"
android:textStyle="bold" />
<ScrollView
android:id="@+id/solution_scroll_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/the_hypori_solution">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center">
<TextView
android:id="@+id/virtualMobileInfrastructure"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="10dp"
android:text="@string/virtual_mobile_infrastructure"
android:textColor="@android:color/black"
android:textSize="30sp"
android:textStyle="italic" />
<TextView
android:id="@+id/vmi_info"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/virtualMobileInfrastructure"
android:layout_marginTop="10dp"
android:text="@string/vmi_info"
android:textAlignment="center"
android:textColor="@android:color/black"
android:textSize="20sp" />
<VideoView
android:id="@+id/hypori_video"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/vmi_info"
android:layout_centerHorizontal="true"/>
<ImageButton
android:id="@+id/play_pause_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/hypori_video"
android:layout_centerHorizontal="true"
app:srcCompat="@drawable/ic_play_arrow"/>
<ImageView
android:id="@+id/hypori_solution_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/play_pause_button"
android:layout_centerHorizontal="true"
android:layout_marginBottom="15dp"
android:layout_marginTop="10dp"
android:contentDescription="@string/hypori_solution_image"
app:srcCompat="@drawable/hypori_solution__vertical_edited"/>
<TextView
android:id="@+id/solution_tv_vmi"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/hypori_solution_image"
android:layout_centerHorizontal="true"
android:layout_marginTop="5dp"
android:text="@string/components_of_the_vmi_platform"
android:textAlignment="center"
android:textColor="@android:color/black"
android:textSize="30sp" />
<ImageView
android:id="@+id/hypori_client_vmi"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/solution_tv_vmi"
android:layout_marginTop="10dp"
android:layout_marginLeft="5dp"
android:layout_marginStart="5dp"
android:contentDescription="@string/hypori_client"
app:srcCompat="@drawable/hypori_client" />
<TextView
android:id="@+id/hypori_client_vmi_tv1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/hypori_client_vmi"
android:layout_marginLeft="10dp"
android:layout_marginStart="10dp"
android:layout_toEndOf="@+id/hypori_client_vmi"
android:layout_toRightOf="@+id/hypori_client_vmi"
android:text="@string/hypori_client"
android:textColor="@android:color/black"
android:textSize="21sp"
android:textStyle="bold" />
<TextView
android:id="@+id/hypori_client_vmi_tv2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/hypori_client_vmi_tv1"
android:layout_alignStart="@+id/hypori_client_vmi_tv1"
android:layout_below="@+id/hypori_client_vmi_tv1"
android:layout_marginTop="5dp"
android:text="@string/"
android:textColor="@android:color/black"
android:textSize="17sp" />
<ImageView
android:id="@+id/hypori_vmd"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/hypori_client_vmi_tv2"
android:layout_marginTop="30dp"
android:layout_marginLeft="5dp"
android:layout_marginStart="5dp"
android:contentDescription="@string/"
app:srcCompat="@drawable/" />
<TextView
android:id="@+id/hypori_vmd_tv1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/hypori_client_vmi_tv1"
android:layout_alignStart="@+id/hypori_client_vmi_tv1"
android:layout_alignTop="@+id/hypori_vmd"
android:text="@string/hypori_virtual_mobile_device"
android:textColor="@android:color/black"
android:textSize="21sp"
android:textStyle="bold" />
<TextView
android:id="@+id/hypori_vmd_tv2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@id/hypori_client_vmi_tv1"
android:layout_alignStart="@+id/hypori_client_vmi_tv1"
android:layout_below="@+id/hypori_vmd_tv1"
android:layout_marginTop="5dp"
android:text="@string/
android:textColor="@android:color/black"
android:textSize="17sp" />
<ImageView
android:id="@+id/hypori_admin_console_iv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/hypori_vmd_tv2"
android:layout_marginTop="30dp"
android:layout_marginLeft="5dp"
android:layout_marginStart="5dp"
android:contentDescription="@string/hypori_admin_console"
app:srcCompat="@drawable/hypori_admin_console" />
<TextView
android:id="@+id/hypori_admin_console_tv1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@id/hypori_client_vmi_tv1"
android:layout_alignStart="@+id/hypori_client_vmi_tv1"
android:layout_alignTop="@+id/hypori_admin_console_iv"
android:text="@string/hypori_admin_console"
android:textColor="@android:color/black"
android:textSize="21sp"
android:textStyle="bold" />
<TextView
android:id="@+id/hypori_admin_console_tv2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@id/hypori_client_vmi_tv1"
android:layout_alignStart="@+id/hypori_client_vmi_tv1"
android:layout_below="@+id/hypori_admin_console_tv1"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:text="@string/
android:textColor="@android:color/black"
android:textSize="17sp" />
</RelativeLayout>
</LinearLayout>
</ScrollView>
最佳答案
将 Activity 类的 header 更改为:
public class MainActivity extends AppCompatActivity implements NavigationView.OnNavigationItemSelectedListener, View.OnClickListener
您忘记实现View.OnClickListener
,因此onClick()
方法不会覆盖任何内容
关于java - findViewById 在 Fragment 中找不到 ImageButton,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51883343/
我有一个像这样的 fragment 栈 F1 -> F2 -> F3 -> F4 -> F5 现在我需要删除 F2、F3、F4 fragment 。 我需要如果我从 F5 fragment 按下后退按
我需要帮助来理解以下场景的工作原理以及如何实现结果。 我有一个名为 ShoppingCart 的类。它有一个名为 addItemsToShoppingCartFromPreviousOrder 的方法
我有一个包含 ViewPager 的 fragment 。这个 ViewPager 显然是由其他 Fragments 填充的。 我的问题是,ViewPager 中的 Fragment 是否有任何方法(
所以我正在实现一个 FragmentActivity 并尝试添加一个 fragment ,但是我遇到了多个问题。我以前做过这个,实际上我使用的代码与上一个项目(它工作的地方)相同,但由于某种原因它在这
Closed. This question needs details or clarity。它当前不接受答案。
我想将 Android X fragment (androidx.fragment.app.Fragment) 转换为 Android native fragment (android.app.Fra
假设我有一个包含 10 列文本类型 (20) 的 SQLite 表。 ListFragment 将从数据库中提取 4 列并使用 SimpleCursorAdapter 显示在列表中。 选择后,List
我有一个对话框 fragment ,我为延迟初始化创建了一个类。当我显示对话框时,它显示正常。但是,当我关闭对话框时,它崩溃的原因是: fragment 与 fragment 管理器无关。 我也尝试过
我想在 View 分页器更改为 fragment 时刷新该 fragment 。 package com.mcivisoft.rcbeam; import android.os.Bundle; imp
我有一个名为的 Activity MainActivity 我在容器 R.id.mainContainer 中添加了 fragment “BenefitFragment”。 在 BenefitFrag
所以我有这个 ClientListView,效果很好,可以显示客户,我可以单击一个客户并在右侧获取他们的详细信息(在我的第二个 fragment 中)。由此处的布局定义: 这很好用,但后来我
我试过这段代码,但点击第一个 fragment 中的按钮并没有改变第二个 fragment 中的字符串值。 这是第一个 fragment 的 kotlin 文件。它有两个按钮,点击它们可以更改字符串值
我有以下情况:我打开 fragment A 和目标,通过按钮的单击事件转到 fragment B。当我在 fragment B 中并点击后退按钮(为了返回 fragment A) 我想将一些参数传递给
我制作了一个 NavigationDrawer fragment ,其中包含 Home、Settings、Feedback 等项目。 home 项在点击 home 时应该打开,home 是在应用程序启
我正在一个接一个地替换 2 个 fragment ,两个 fragment 都有不同的选项菜单。当我替换第二个 fragment 时,它也显示第一个 fragment 的菜单。 setHasOptio
我有问题: android.app.Fragment$InstantiationException: Unable to instantiate fragment ${packageName}.${a
我正在研究 fragment 转换。当我用第二个 fragment 替换第一个 fragment 时,它出现在第一个 fragment 的下方。我希望它移动到第一个 fragment 之上。我该怎么做
我在抽屉导航里总共有 12 个 fragment 。每个 fragment 都有 volley 方法。每个 fragment 都显示自己的 Volley 响应,除了 position = 1 和 po
我在我的 Activity 中使用了两个 fragment 。最初我将向 Activity 添加一个 fragment 。然后在第一个 fragment 中使用监听器我想用第二个 fragment 替
我正在实现一个“fragments-101”程序,当相应的按钮被点击时我会替换一个 fragment 。然而,下面的事情发生了: 为什么会这样?为什么初始 fragment 没有被完全替换?MainA
我是一名优秀的程序员,十分优秀!