如何设置安卓Intent.ACTION_CALL,来自 lstBook 的 Uri 编号 = new ArrayList<>();



我创建了类似android应用程序的图库,其中有一些使用gridview片段的图像。

功能也很好,我的日常USSD代码的点击按钮也很好。

首先很抱歉,因为我不知道如何解释我的要求或问题。

我需要帮助,如何从gridview中获得USSD代码,如TitleDescription

这是我的代码:

lstBook = new ArrayList<>();
lstBook.add(new Book("*111", "Categorie Book", "Description book", R.drawable.person7));

这是我下一个活动的代码:

public class Book_Activity extends AppCompatActivity {
private TextView tvtitle,tvdescription,tvcategory;
private ImageView img;
private Button btn;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_book_);

tvtitle = (TextView) findViewById(R.id.txttitle);
tvdescription = (TextView) findViewById(R.id.txtDesc);
tvcategory = (TextView) findViewById(R.id.txtCat);
img = (ImageView) findViewById(R.id.bookthumbnail);
// Recieve data
Intent intent = getIntent();
String Title = intent.getExtras().getString("Title");
String Description = intent.getExtras().getString("Description");
int image = intent.getExtras().getInt("Thumbnail") ;
// Setting values
tvtitle.setText(Title);
tvdescription.setText(Description);
img.setImageResource(image);
btn = (Button) findViewById(R.id.button);
btn.setOnClickListener(new View.OnClickListener(){
@Override
public void onClick(View v) {
// TODO Auto-generated method stub

String phone = "*1111111111";
String encodedHash = Uri.encode("#");
Intent intent = new Intent(Intent.ACTION_CALL);
intent.setData(Uri.parse("tel:" + phone+encodedHash));
startActivity(intent);
}
});
}
} 

我想要我的网格视图中的String phone = tvtitle

我的意图显示为*1111111111#,但我想要*111#

我已经自己解决了我的问题,我在这里回答其他用户可以获得帮助

更改字符串phone字符串phone="*11111111111";具有字符串电话=tvtitle.getText((.toString((;

@Override
public void onClick(View v) {
// TODO Auto-generated method stub

//String phone = "*1111111111";
String phone = tvtitle.getText().toString();
String encodedHash = Uri.encode("#");
Intent intent = new Intent(Intent.ACTION_CALL);
intent.setData(Uri.parse("tel:" + phone+encodedHash));
startActivity(intent);
}

最新更新