小编Tai*_*yen的帖子

鼠标悬停鼠标输出JQuery时自动播放/暂停

我有以下问题.这是代码:

<div class="article-content-wrapper>
  <%= video_tag 'Garden.mp4', :class => "video", :controls => true %>
</div>
Run Code Online (Sandbox Code Playgroud)

在鼠标悬停时,我希望视频进入自动播放/恢复,在鼠标输出时,视频要暂停.

我怎么能用JQuery做到这一点?我在JQuery网站上搜索了很多,但我找不到任何东西给我.我试过的代码不起作用.

cSlider:在单击显示时停止滑块JQuery自动播放视频中的鼠标悬停自动播放视频的自动播放

谢谢您的帮助.

javascript video jquery autoplay

5
推荐指数
1
解决办法
3158
查看次数

如何在不同的文件夹中使用本地/用户控制

我有一个问题。

我不想复制我的代码,所以我看到我可以使用:用户控制/本地问题是当我使用本地时,我只能调用与该文件夹位于同一文件夹中的文件,我想调用我的文件在另一个文件夹中。

例子 :

在我的布局/_Menu.xaml

<UserControl
    x:Class="TeysserWP8.Views.misc._menuLayout"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:TeysserWP8.Views.misc"
    xmlns:drawerLayout="using:DrawerLayout"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">

    <Grid>
        <Grid.Background>
            <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
                <GradientStop Color="Black" Offset="0"/>
                <GradientStop Color="#FF563AA0" Offset="1"/>
            </LinearGradientBrush>
        </Grid.Background>
        <Button Command="{Binding MyDietViewCommand}" Content="Mes Régimes" Margin="10,21,0,502" Width="245"></Button>
        <Button Command="{Binding DietStoreViewCommand}" Content="Régimes Store" Margin="10,89,0,434" Width="245"></Button>
        <Button Command="{Binding LogoutViewCommand}" Content="Déconnexion" Margin="10,502,0,21" Width="245"></Button>
    </Grid>
</UserControl>
Run Code Online (Sandbox Code Playgroud)

在我的商店/Show.xaml

<Grid>
  some code
</Grid>
<local:/Layout/_Menu />  <-- i Want something like this but its not work.
Run Code Online (Sandbox Code Playgroud)

如果 _Menu.xaml 文件与 Show.xaml ( Store Folder ) 位于同一文件夹中,则它会起作用。

你能帮助我吗 ?谢谢。

c# wpf xaml

5
推荐指数
1
解决办法
2633
查看次数

使用Volley Android请求删除

我尝试使用Volley将带有诸如X-user-email和X-User-token之类的参数的DELETE请求发送到REST Api。我已经尝试了Internet上的几乎所有内容,但仍然收到400错误消息。

当我使用POST Request的工作时,所以我认为它对于DELETE来说是相同的,我只是更改了:

(Request.Method.POST, url, params, new Response.Listener<JSONObject>() {...}
Run Code Online (Sandbox Code Playgroud)

通过

(Request.Method.DELETE, url, params, new Response.Listener<JSONObject>() {...}
Run Code Online (Sandbox Code Playgroud)

有以下代码:

MainActivity.java

disconnect.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {;
                JSONObject params = new JSONObject();
                try {
                    params.put("X-User-Email", "test@test.com");
                    params.put("X-User-Token", "QwerTyuI789IOP");
                } catch (JSONException e) {
                    e.printStackTrace();
                }
                NetworkManager.getInstance(v.getContext()).delete("http://10.0.2.2:3000/users/sign_out", params, new NetworkManager.NetworkManagerListener<String>()  {
                    @Override
                    public void getResult(String response)
                    {
                        if (!response.isEmpty())
                        {
                            result.setText(response.toString());
                            Log.e("Response", response.toString() );
                        }
                    }
                });
            }
        });
Run Code Online (Sandbox Code Playgroud)

NetworkManager.java

public void delete(String url, JSONObject params, final NetworkManagerListener<String> listener) { …
Run Code Online (Sandbox Code Playgroud)

android android-volley

4
推荐指数
1
解决办法
6692
查看次数

如何以编程方式更改单选按钮的选中颜色

我想知道它是否可能以编程方式以及如何在选中时以编程方式更改 RadioButton 的颜色?

PS:我不想使用 XML

在 XML 中,我使用了这样的东西及其工作:

    <RadioButton
        android:id="@+id/radio_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="test1"
        android:textColor="@color/red"
        android:textSize="16dp"
        android:paddingStart="10dp"
        android:paddingEnd="0dp"
        android:theme="@style/CustomColorRadioButton" />
Run Code Online (Sandbox Code Playgroud)

在我的 style.xml

<style name="CustomRadioButton" parent="AppTheme">
    <item name="colorControlActivated">@color/blue</item>
</style>
Run Code Online (Sandbox Code Playgroud)

我怎样才能以编程方式做到这一点?

android kotlin

3
推荐指数
1
解决办法
3682
查看次数

Android Room多个字段具有相同的columnName

我面临着Room的特定问题。我有一个对象

@Entity(tableName = "classifieds")
data class ClassifiedBean(
    @PrimaryKey
    @ColumnInfo(name = "id")
    @SerializedName("id")
    var id: String,

    @Embedded
    @SerializedName("client")
    var clientBean: ClientBean,

    @Embedded
    @SerializedName("location")
    var locationBean: LocationBean
)
Run Code Online (Sandbox Code Playgroud)

这里有我的对象LocationBean和ClientBean。

问题出在我的ClientBean内部,我也有一个具有相同属性(地址,postalCode,城市,国家...)的LocationBean。

data class ClientBean(
    @ColumnInfo(name = "client_id")
    @SerializedName("id")
    var id: Int,

    @ColumnInfo(name = "name")
    @SerializedName("name")
    var name: String,

    @Embedded
    @SerializedName("location")
    var locationBean: LocationBean
)
Run Code Online (Sandbox Code Playgroud)

在这里您可以找到我的LocationBean

data class LocationBean (
    @ColumnInfo(name = "location_id")
    @SerializedName("locationId")
    var id: Int,

    @ColumnInfo(name = "country")
    @SerializedName("country")
    var country: String,

    @ColumnInfo(name = "city")
    @SerializedName("city")
    var city: String,

    @ColumnInfo(name = "address") …
Run Code Online (Sandbox Code Playgroud)

android android-room

3
推荐指数
1
解决办法
513
查看次数

ROOM 无法弄清楚如何将此字段保存到数据库中

我需要你的帮助。我试图在没有反序列化的情况下找到解决方案,但我什么也没找到。如果你能帮助我,那就太好了……所以我有以下 JSON 文件

"resources": [{
    "id": 441988,
    "name": "TVA",
    "parent": {
      "id": 159
    },
  },
  {
    "id": 441900,
    "name": "Marketing",
    "parent": {
      "id": 166
    },
}]
Run Code Online (Sandbox Code Playgroud)

我用 ROOM 创建了一个数据库,它可以工作,但我有一个问题,无法保存“父对象的 id”

这是我的以下代码:

    @Entity(tableName = "resources")
    class CategoryBean {

    @PrimaryKey
    @ColumnInfo(name = "resource_id")
    @SerializedName("id")
    private var mId: Int = 0

    @ColumnInfo(name = "name")
    @SerializedName("name")
    private var mName: String? = null

    @ColumnInfo(name = "parent")
    @SerializedName("parent")
    private var mParent: ParentBean? = null

    fun getId(): Int {
        return mId
    }

    fun getName(): String? {
        return …
Run Code Online (Sandbox Code Playgroud)

android kotlin android-room

1
推荐指数
1
解决办法
1132
查看次数

标签 统计

android ×4

android-room ×2

kotlin ×2

android-volley ×1

autoplay ×1

c# ×1

javascript ×1

jquery ×1

video ×1

wpf ×1

xaml ×1