用python(kivy模块)开发安卓影视App——主页面开发(一)

2024-02-25 20:50

本文主要是介绍用python(kivy模块)开发安卓影视App——主页面开发(一),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

由于kivy在国内使用较少,在开发道路上困难重重,本人也花了不少精力来进行开发,希望大家能够从中得到学习与锻炼。

下面是我的成果图

 

首先是py文件

import requests
import re
from kivy.properties import StringProperty
from kivymd.app import MDApp
from kivymd.uix.button import MDRectangleFlatButton
from kivymd.uix.card import MDCard
from kivymd.uix import bottomsheet
from kivymd.uix.boxlayout import MDBoxLayout
from kivymd.uix.stacklayout import MDStackLayout
from kivy.uix.screenmanager import Screen
from kivymd.font_definitions import theme_font_styles
from kivy.core.text import LabelBase
from kivymd.uix.screen import MDScreen
from kivy.core.window import Window
Window.size = (Window.height*3/4, Window.width*9/10)
class DealData():class_name = ['动漫', '追剧', '电影']class_key = ['4', '2', '1']class_url = 'https://saohuo.la/list/[].html'header = {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36"}class_list = '<ul class="v_list">(.*?)</ul></section><section class="page">'class_list_name = '<li><div class="v_img"><a href=".*?" title="(.*?)"><img class='class_list_picture = '<img class="lazyload" alt=".*?" data-original="(.*?)" /></a><div class='class_list_href = '<li><div class="v_img"><a href="(.*?)" title=".*?"><img class='class_list_text = '<div class="v_note">(.*?)</div></div><p class='search_url = 'https://saohuo.la/search.php?page=1&searchword=KEYWORDS&searchtype='search_list = '<ul class="v_list">(.*?)</ul></section><section class="page">'search_video_name = '<li><div class="v_img"><a href=".*?" title="(.*?)"><img class='search_video_url = '<li><div class="v_img"><a href="(.*?)" title=".*?"><img class='search_video_pic = '<img class="lazyload" data-original="(.*?)" /></a><div class="v_note">'search_video_data = '<div class="v_note">(.*?)</div>'video_class_data = '<ul class="from_list">([\s\S]*?)</ul>'video_class_name = '<li class=".*?">([\s\S]*?)</li>'video_play_data = '<section class="grid_box">([\s\S]*?)</section>'video_play_list = '<ul class="play_list"([\s\S]*?)</ul>'video_play_name = '<a title="[\s\S]*?" href="[\s\S]*?" target="_self">([\s\S]*?)</a>'video_play_url = '<a title="[\s\S]*?" href="([\s\S]*?)" target="_self">[\s\S]*?</a>'name_head = {'name': '骚火','href_head': 'https://saohuo.la', 'image_head': ''}# 首页影视分类列表
class MovieLayoutData(MDStackLayout):pass# 屏幕切换列表
class MainMovieLayout(MDStackLayout):pass# 首页分类布局
class TabCard(MDCard):screen = StringProperty()text = StringProperty()def on_press(self):# 切换影视分类self.parent.parent.parent.parent.parent.parent.parent.parent.ids.screen_manager.current = self.screen
# 影视详情单
class ElementCard(MDCard):url_all_datas = DealData()image = StringProperty()title_name = StringProperty()pictext = StringProperty()video_href = StringProperty()# 主屏幕
class MainScreen(MDScreen):url_all_datas = DealData()num = 0def __init__(self):self.one_screen()self.add_class_name()def one_screen(self, **kwargs):super(MainScreen, self).__init__(**kwargs)# 主页分类标签列表def add_class_name(self):for i in range(len(self.url_all_datas.class_name)):header = TabCard()header.text = self.url_all_datas.class_name[i]header.screen = f'screen{i}'self.ids.movie_class.add_widget(header)self.add_screen_details()self.num = self.num+1# 切换主页分类def add_screen_details(self):screen = Screen(name=f'screen{str(self.num)}')screen.add_widget(self.add_movie_list())self.ids.screen_manager.add_widget(screen)# 主页分类列表def add_movie_list(self):movie_layout = MovieLayoutData()datas = self.pa_shou_ye()for data in datas:video_list = ElementCard()video_list.title_name = data['title']video_list.video_href = data['list_url']video_list.image = data['image']video_list.pictext = data['pictext']movie_layout.ids.movie_list_data.add_widget(video_list)return movie_layout# 爬取主页分类详情def pa_shou_ye(self):all_datas = []url = self.url_all_datas.class_url.replace('[]', self.url_all_datas.class_key[self.num])response = requests.get(url, headers=self.url_all_datas.header, timeout=6)html = response.content.decode('utf-8')try:list_item = re.findall(self.url_all_datas.class_list, html)[0]title_lists = re.findall(self.url_all_datas.class_list_name, list_item)href_lists = re.findall(self.url_all_datas.class_list_href, list_item)src_lists = re.findall(self.url_all_datas.class_list_picture, list_item)pictext_lists = re.findall(self.url_all_datas.class_list_text, list_item)for i in range(len(title_lists)):data = dict()data['name'] = self.url_all_datas.name_head['name']data['href_head'] = self.url_all_datas.name_head['href_head']data['image_head'] = self.url_all_datas.name_head['image_head']data['title'] = title_lists[i]data['list_url'] = data['href_head']+href_lists[i]data['image'] = data['image_head']+src_lists[i]data['pictext'] = pictext_lists[i]all_datas.append(data)return all_datasexcept:return all_datasclass MainApp(MDApp):def build(self):self.theme_cls.theme_style = 'Light'self.theme_cls.primary_palette = 'Gray'LabelBase.register(name='Lishu', fn_regular='Lishu.ttf')theme_font_styles.append('Lishu')self.theme_cls.font_styles['Lishu'] = ['Lishu', 16, False, 0.15]return MainScreen()if __name__ == '__main__':MainApp().run()

然后是kv文件

<MainScreen>:MDBoxLayout:orientation: 'vertical'MDBoxLayout:size_hint_y:.08orientation: 'vertical'MDBoxLayout:padding:[0,0,0,0]spacing:dp(10)MDIconButton:icon: 'menu'on_release:root.on_release()MDLabel:MDTextFieldRound:id:search_keynormal_color: app.theme_cls.primary_lighthint_text:'搜索'font_name: './Lishu.ttf'size_hint_x:2pos_hint: {'x':.1,'y': .2}MDIconButton:icon: 'magnify'on_release:root.on_press()MDIconButton:icon:'download'             ScreenManager:id:home_screen_managerMDScreen:name:'home_class_screen'MDBoxLayout:orientation: 'vertical'MDBoxLayout:size_hint_y:.05ScrollView:MDBoxLayout:id:movie_classadaptive_width:Truerows:1padding:[10,2,10,2] spacing:dp(5)         ScreenManager:id:screen_managerMovieLayoutData:size_hint_y:Noneheight:Window.width*1/100adaptive_height:True screen_manager:screen_manager  MainMovieLayout:size_hint_y:Noneheight:Window.width*1/100adaptive_height:True screen_manager:home_screen_manager  <MovieLayoutData>:   size_hint_y:1ScrollView:MDStackLayout:id:movie_list_datapadding:[10,2,10,10] spacing: '5dp'adaptive_height:True 
<ElementCard>:orientation: 'vertical'size_hint_x: .5size_hint_y: Noneheight:Window.height*1/4padding: dp(10)radius:[25]MDBoxLayout:orientation: 'horizontal'size_hint_y: .9AsyncImage:source:root.image MDBoxLayout:orientation: 'vertical'size_hint_y: .9MDLabel:text: root.title_namefont_size: 15bold:Truefont_name: './Lishu.ttf'halign:'center'MDLabel:text:root.pictextfont_name: './Lishu.ttf'halign:'center'font_size: 15     <TabCard>:icon:'movie-roll'size_hint: None,1radius:dp(15)MDIcon:icon:root.iconMDLabel:text: root.textfont_name:'Lishu.ttf'<MainMovieLayout>:   size_hint_y:1ScrollView:MDStackLayout:id:movie_listpadding:[10,2,10,10] spacing: '5dp'adaptive_height:True 

如果有朋友想直接使用该代码,需要设置一个字体文件,放在代码同一目录下,且名字命为Lishu.ttf即可直接使用

这篇关于用python(kivy模块)开发安卓影视App——主页面开发(一)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/746670

相关文章

python获取指定名字的程序的文件路径的两种方法

《python获取指定名字的程序的文件路径的两种方法》本文主要介绍了python获取指定名字的程序的文件路径的两种方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要... 最近在做项目,需要用到给定一个程序名字就可以自动获取到这个程序在Windows系统下的绝对路径,以下

使用Python批量将.ncm格式的音频文件转换为.mp3格式的实战详解

《使用Python批量将.ncm格式的音频文件转换为.mp3格式的实战详解》本文详细介绍了如何使用Python通过ncmdump工具批量将.ncm音频转换为.mp3的步骤,包括安装、配置ffmpeg环... 目录1. 前言2. 安装 ncmdump3. 实现 .ncm 转 .mp34. 执行过程5. 执行结

Python实现批量CSV转Excel的高性能处理方案

《Python实现批量CSV转Excel的高性能处理方案》在日常办公中,我们经常需要将CSV格式的数据转换为Excel文件,本文将介绍一个基于Python的高性能解决方案,感兴趣的小伙伴可以跟随小编一... 目录一、场景需求二、技术方案三、核心代码四、批量处理方案五、性能优化六、使用示例完整代码七、小结一、

Python中 try / except / else / finally 异常处理方法详解

《Python中try/except/else/finally异常处理方法详解》:本文主要介绍Python中try/except/else/finally异常处理方法的相关资料,涵... 目录1. 基本结构2. 各部分的作用tryexceptelsefinally3. 执行流程总结4. 常见用法(1)多个e

Python中logging模块用法示例总结

《Python中logging模块用法示例总结》在Python中logging模块是一个强大的日志记录工具,它允许用户将程序运行期间产生的日志信息输出到控制台或者写入到文件中,:本文主要介绍Pyt... 目录前言一. 基本使用1. 五种日志等级2.  设置报告等级3. 自定义格式4. C语言风格的格式化方法

Python实现精确小数计算的完全指南

《Python实现精确小数计算的完全指南》在金融计算、科学实验和工程领域,浮点数精度问题一直是开发者面临的重大挑战,本文将深入解析Python精确小数计算技术体系,感兴趣的小伙伴可以了解一下... 目录引言:小数精度问题的核心挑战一、浮点数精度问题分析1.1 浮点数精度陷阱1.2 浮点数误差来源二、基础解决

SpringBoot 多环境开发实战(从配置、管理与控制)

《SpringBoot多环境开发实战(从配置、管理与控制)》本文详解SpringBoot多环境配置,涵盖单文件YAML、多文件模式、MavenProfile分组及激活策略,通过优先级控制灵活切换环境... 目录一、多环境开发基础(单文件 YAML 版)(一)配置原理与优势(二)实操示例二、多环境开发多文件版

使用docker搭建嵌入式Linux开发环境

《使用docker搭建嵌入式Linux开发环境》本文主要介绍了使用docker搭建嵌入式Linux开发环境,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面... 目录1、前言2、安装docker3、编写容器管理脚本4、创建容器1、前言在日常开发全志、rk等不同

使用Python实现Word文档的自动化对比方案

《使用Python实现Word文档的自动化对比方案》我们经常需要比较两个Word文档的版本差异,无论是合同修订、论文修改还是代码文档更新,人工比对不仅效率低下,还容易遗漏关键改动,下面通过一个实际案例... 目录引言一、使用python-docx库解析文档结构二、使用difflib进行差异比对三、高级对比方

深度解析Python中递归下降解析器的原理与实现

《深度解析Python中递归下降解析器的原理与实现》在编译器设计、配置文件处理和数据转换领域,递归下降解析器是最常用且最直观的解析技术,本文将详细介绍递归下降解析器的原理与实现,感兴趣的小伙伴可以跟随... 目录引言:解析器的核心价值一、递归下降解析器基础1.1 核心概念解析1.2 基本架构二、简单算术表达