xhr.open('GET', 'http://39.107.83.187:12346/articles', false); xhr.send(); 如何接受数据
时间: 2024-02-06 18:03:28 浏览: 163
xhr.js:最小的 XmlHttpRequest Javascript 微库
/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>
```
item_word.xml
```
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp">
<TextView
android:id="@+id/englishTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="20sp" />
<TextView
android:id="@+id/translationTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="16sp" />
<ImageView
android:id="@+id/showTranslationImageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end"
android:src="@drawable/ic_hide_translation" />
</LinearLayout>
```
dialog_add_word.xml
```
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp">
<EditText
android:id="@+id/englishEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="单词"
android:textSize="20sp" />
<EditText
android:id="@+id/translationEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="翻译"
android:textSize="16sp" />
</LinearLayout>
```
menu_main.xml
```
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/action_search"
android:icon="@drawable/ic_search"
android:title="搜索"
app:actionViewClass="androidx.appcompat.widget.SearchView"
app:showAsAction="ifRoom" />
<item
android:id="@+id/action_add"
android:icon="@drawable/ic_add"
android:title="添加"
app:showAsAction="always" />
<item
android:id="@+id/action_sort"
android:icon="@drawable/ic_sort"
android:title="排序"
app:showAsAction="never" />
</menu>
```
以上是一个简单的实现上述功能的Android程序代码,具体实现细节可能需要根据具体需求进行调整。
阅读全文