pull/32/head
parent
43f43ca31b
commit
7be6e4a278
@ -1,4 +1,4 @@ |
||||
package io.legado.app.ui.main.booksource |
||||
package io.legado.app.ui.booksource |
||||
|
||||
import android.view.LayoutInflater |
||||
import android.view.View |
@ -0,0 +1,8 @@ |
||||
package io.legado.app.ui.booksource |
||||
|
||||
import android.app.Application |
||||
import io.legado.app.base.BaseViewModel |
||||
|
||||
class BookSourceViewModel(application: Application) : BaseViewModel(application) { |
||||
|
||||
} |
@ -0,0 +1,2 @@ |
||||
package io.legado.app.ui.main.rss |
||||
|
@ -0,0 +1,8 @@ |
||||
package io.legado.app.ui.main.rss |
||||
|
||||
import io.legado.app.R |
||||
import io.legado.app.base.BaseFragment |
||||
|
||||
class RssFragment : BaseFragment(R.layout.fragment_rss) { |
||||
|
||||
} |
@ -0,0 +1,19 @@ |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
||||
xmlns:app="http://schemas.android.com/apk/res-auto" |
||||
android:orientation="vertical" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="match_parent"> |
||||
|
||||
<io.legado.app.ui.widget.TitleBar |
||||
android:id="@+id/title_bar" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="wrap_content" |
||||
app:attachToActivity="false" |
||||
app:title="@string/rss" /> |
||||
|
||||
<androidx.recyclerview.widget.RecyclerView |
||||
android:id="@+id/recycler_view" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="match_parent" /> |
||||
</LinearLayout> |
Loading…
Reference in new issue