Как я могу отправить SMS кредиторам на номера телефонов, указанные в Android Studio в listview_1? Вот мой незавершенный проект, пожалуйста, кто знает, помогите
package com.example.KREDIT;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.telephony.SmsManager;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import java.util.ArrayList;
import static com.example.KREDIT.R.id.listview_1;
public class S_Nadirov extends AppCompatActivity {
private ListView listView;
private void sendSms(){
SmsManager sms = SmsManager.getDefault();
ArrayList parts = sms.divideMessage("MESSAGE");
sms.sendMultipartTextMessage(String.valueOf(listview_1), null, parts, null,
null);}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_s__nadirov);
listView = findViewById(listview_1);
String[] values = new String[]{
" TOGAYEV JAXONGIR 6189057,43 сум 998931508870 " ,
" EGAMQULOV JALOLIDDIN 16075349,89 сум 998973927802 " ,
" Kubayeva Mavjuda 77,96 сум 998932320974 " ,
};
ArrayAdapter adapter = new ArrayAdapter<>( this,
android.R.layout.simple_list_item_1,
android.R.id.text1, values);
listView.setAdapter(adapter);
}
}
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
package="com.example.KREDIT">
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.KREDIT">
android:theme="@style/Theme.AppCompat.DayNight.NoActionBar"/>
Вопрос задан
более трёх лет назад
178 просмотров