загрузить HTML в веб-просмотр с прогрессбаром - PullRequest
0 голосов
/ 16 октября 2019

Я сделал recylerview и при нажатии в другом списке я хочу загрузить html, а также добавить progressbar. Я сделал макет с webview и progressbar, а также по состоянию на this и многими другими.

это действие, где отображается recyclerView, и я хочу загрузить другой HTMLпри нажатии в другой строке списков recyclerView:

@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_abhyas);

        RecyclerView recyclerView = findViewById(R.id.rv_list);
        LinearLayoutManager layoutManager = new LinearLayoutManager(this);
        layoutManager.setOrientation(LinearLayoutManager.VERTICAL);
        recyclerView.setLayoutManager(layoutManager);

// i want to load different html when clicked these different list; and i have trackced these position in onNoteClick below:
        ArrayList<Rv> rvList = new ArrayList<>();
        rvList.add(new Rv(R.mipmap.blue, "१", "जन्मभूमि"));
        rvList.add(new Rv(R.mipmap.green, "२", "सन्तुष्टि"));
        rvList.add(new Rv(R.mipmap.orange, "३", "सन्दुक रुइत"));
        rvList.add(new Rv(R.mipmap.purple, "४", "थाङ्का"));

RvAdapter adapter = new RvAdapter(rvList, this);
        recyclerView.setAdapter(adapter);
}

@Override
    public void onNoteCLick(int position) {
        WebView webView = findViewById(R.id.webView);

        if (position == 0){
            // i want to load here "html"

        }
        if (position == 1) {
            //i want to load here html2
        }

    }
}

, и это макет "webview.xml", который я создал для загрузки html с прогрессбаром:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">
    <ProgressBar
        android:id="@+id/progressBar"
        android:max="3"
        android:progress="100"
        style="?android:attr/progressBarStyleLarge"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerInParent="true" />

    <WebView
        android:id="@+id/webView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_centerHorizontal="true"
        android:layout_below="@+id/progressBar"
        />
</RelativeLayout>
...